Planet Python RSS
216 subscribers
16.9K links
Unofficial Planet Python RSS feed from planetpython.org. Maintained by @cfinnberg
Download Telegram
Catalin George Festila: Python Qt5 - Create a spectrum equalizer.

Link: http://python-catalin.blogspot.com/2020/03/python-qt5-create-spectrum-equalizer.html

I haven't written much for a while on these issues about python and PyQt5.
Today I will show a complex example of QtMultimedia and how to create a spectrum equalizer.
First, the PyQt5 bindings come wi
Ruslan Spivak: EOF is not a character

Link: https://ruslanspivak.com/eofnotchar/

I was reading Computer Systems: A Programmer’s Perspective the other day and in the chapter on Unix I/O the authors mention that there is no explicit “EOF character” at the end of a file.

If you’ve s
Catalin George Festila: Python 3.6.9 : My colab tutorials - part 001.

Link: http://python-catalin.blogspot.com/2020/03/python-369-my-colab-tutorials-part-001.html

Today I start this tutorials series for the Colab tool.
To share my working with the Colab tool I created this GitHub project.
This project has two colab files :
catafest_001.ipynb Created using Cola
Roberto Alsina: Episodio 26: como el REPL, pero mejor

Link: https://ralsina.me/weblog/posts/youtube/episodio-26-como-el-repl-pero-mejor.html

El modo interactivo del intérprete de Python está buenísimo! Es re útil! Pero ... se puede mejorar. Veamos 3 o 4 alternativas.
Mike Driscoll: PyDev of the Week: Doug Farrell

Link: http://www.blog.pythonlibrary.org/2020/03/02/pydev-of-the-week-doug-farrell/

This week we welcome Doug Farrell (@writeson) as our PyDev of the Week! Doug is working on Python book entitled The Well-Grounded Python Developer for Manning. He is also a contributor for Real Python
PyBites: Productivity Mondays - What Can You Do Consistently This Week?

Link: https://pybit.es/consistency.html


Continuous effort - not strength or intelligence - is the key to unlocking our potential ― Winston S. Churchill.

Last week I learned about lagging and leading indicators and why it's important to fo
IslandT: What is python programming language?

Link: https://kibiwebgeek.com/what-is-python-programming-language/

Python is the most popular programming language in the world, above Java and above C/C++/C#. We can use Python for free to develop web applications or desktop software and then sell that application o
PyCharm: PyCharm 2020.1 EAP 5

Link: http://feedproxy.google.com/~r/Pycharm/~3/b6OvVfMAsWY/

We have a new Early Access Program (EAP) version of PyCharm that can be now downloaded from our website.
We are getting closer every week to the 2020.1 release. We are pushing hard to get through all
Podcast.__init__: The Advanced Python Task Scheduler

Link: https://www.pythonpodcast.com/apscheduler-python-task-scheduler-episode-252/

Most long-running programs have a need for executing periodic tasks. APScheduler is a mature and open source library that provides all of the features that you need in a task scheduler. In this episod
Real Python: Python Bindings: Calling C or C++ From Python

Link: https://realpython.com/python-bindings-overview/

Are you a Python developer with a C or C++ library you’d like to use from Python? If so, then Python bindings allow you to call functions and pass data from Python to C or C++, letting you take advant
Anarcat: Moving dconf entries to git

Link: https://anarc.at/blog/2020-03-02-moving-dconf-entries-to-git/

I've been managing my UNIX $HOME repository with version control
for almost two decades now (first under CVS, then with git). Once in a
while, I find a little hack to make this work better.
Today, it'
PyCon: March 2 Update on COVID-19

Link: https://pycon.blogspot.com/2020/03/march-2-update-on-covid-19.html

The coronavirus (also known as COVID-19) is a new virus that causes respiratory illness in people and can spread from person-to-person. Since PyCon US 2020 is scheduled in April, we want to give our c
Andre Roberge: True constants in Python - part 2, and a challenge

Link: https://aroberge.blogspot.com/2020/03/true-constants-in-python-part-2-and.html

Like the title says, this is the second post on this topic. If you have not done so, you should really read the first one, which is much shorter, before continuing to read here.The first clueThe first
Andre Roberge: True constants in Python - part 1

Link: https://aroberge.blogspot.com/2020/03/true-constants-in-python-part-1.html

tl;dr: I'm always trying to see if what everyone "knows to be true" is really true...In many programming languages, you can define constants via some special declaration. For example, in Java you can
DaPythonista: API? It’s not that scary!

Link: https://dapythonista.com/2020/03/03/api-its-not-that-scary/

There are way too many services out there that provide a free API whichwaits to be adjusted into your favorite language.Also, API services could be generated from any visible data such as Facebook (wh
Matt Layman: Views On Views

Link: https://www.mattlayman.com/understand-django/views-on-views/

In the previous Understand Django article, I covered URLs and the variety of tools that Django gives us to describe the outside interface to the internet for your project. In this article, we’ll exami
Real Python: How to Implement a Python Stack

Link: https://realpython.com/courses/python-stack/

Have you heard of stacks and wondered what they are? Do you have a general idea but are wondering how to implement a Python stack? You’ve come to the right place!
In this course, you’ll learn:

How to