Planet Python RSS
216 subscribers
16.9K links
Unofficial Planet Python RSS feed from planetpython.org. Maintained by @cfinnberg
Download Telegram
Janusworx: Moving Python Planet Feed, Test Post.

Link: https://janusworx.com/moving-python-planet-feed-test-post/

Changing the feed for the planet, so i don’t flood it with my daily python updates.
If you want to keep up with programming specific stuff, the feed is here.
And if you want to read all the madness,
Catalin George Festila: Python 3.7.5 : Starting with kaggle platform.

Link: http://python-catalin.blogspot.com/2019/12/python-375-starting-with-kaggle-platform.html

Kaggle is the world's largest community of data scientists and the platform is the fastest way to get started on a new data science project.
A good choice to use Kaggle is this feature: Kaggle provide
Philippe Normand: HTML overlays with GstWPE, the demo

Link: https://base-art.net/Articles/html-overlays-with-gstwpe-the-demo/

Once again this year I attended the GStreamer conference and just before
that, Embedded Linux conference Europe which took place in Lyon (France).
Both events were a good opportunity to demo one of th
Roberto Alsina: Episodio 18: ¡Python más rápido que C!

Link: https://ralsina.me/weblog/posts/youtube/episodio-18-python-mas-rapido-que-c.html

Charla relámpago presentada en PyCon Argentina 2019. Es más o menos lo mismo que otro video del canal pero más corto y en vivo, y me salió un poquito mejor porque es la segunda vez que lo hago ;-)
Otr
Ned Batchelder: Coverage 5.0 beta 2

Link: https://nedbatchelder.com//blog/201912/coverage_50_beta_2.html

I mean it this time, coverage.py 5.0 is nearly ready. I’m putting out
coverage.py 5.0 beta 2
for a week before declaring it really done. Please try it.Everything I said in the beta 1 announcement
st
Andre Roberge: pydeps: a very useful program

Link: https://aroberge.blogspot.com/2019/12/pydeps-very-useful-program.html

A few weeks ago, I was doing some refactoring of Friendly-traceback and had some minor difficulty in avoiding the creation of circular imports.  For some reason (age perhaps), I could not visualize th
Podcast.__init__: Debugging Python Projects With PySnooper

Link: https://www.pythonpodcast.com/pysnooper-python-debugging-episode-241/

Debugging is a painful but necessary practice in software development. The tools that are available in Python range from the built-in debugger, to tools integrated with your coding environment, to the
Erik Marsja: Learn all About Installing & Updating Packages in Python

Link: https://www.marsja.se/learn-all-about-installing-updating-packages-in-python/?utm_source=rss&utm_medium=rss&utm_campaign=learn-all-about-installing-updating-packages-in-python

The post Learn all About Installing & Updating Packages in Python appeared first on Erik Marsja.
In this tutorial, we will learn the basics of installing, working and updating packages in Python. Firs
Real Python: MicroPython: An Intro to Programming Hardware in Python

Link: https://realpython.com/micropython/

Are you interested in the Internet of Things, home automation, and connected devices? Have you ever wondered what it would be like to build a blaster, a laser sword, or even your own robot? If so, the
Continuum Analytics Blog: It’s Time to Upgrade to Python 3 – Time Is Running Out!

Link: https://www.anaconda.com/time-to-upgrade-to-python-3/

The Python community will sunset Python 2 on January 1, 2020.   How much time is left? Check out the handy clock at: https://pythonclock.org/.  How does this impact the Anaconda Distribution and the c
Catalin George Festila: Python 3.7.5 : The OSMnx python package.

Link: http://python-catalin.blogspot.com/2019/12/python-375-osmnx-python-package.html

About this python package named OSMnx, you can read on GitHub.
OSMnx is a Python package that lets you download spatial geometries and model, project, visualize, and analyze street networks from OpenS
Django Weblog: 2020 DSF Board Election Results

Link: https://www.djangoproject.com/weblog/2019/dec/09/2020-dsf-board-election-results/

Our 2020 Django Software Foundation Election results are in. The Top 7 candidates are listed below in order of their ranking:

Frank Wiles
Anna Makarudze
James Bennett
William Vincent
Kátia Nakamura
Programiz: Python Docstrings

Link: https://www.programiz.com/python-programming/docstrings

In this tutorial, we will learn about Python docstrings. More specifically, we will learn how and why docstrings are used with the help of examples.
Programiz: Python Comments

Link: https://www.programiz.com/python-programming/comments

In this tutorial, we will learn to create comments in Python with the help of examples.
Python Insider: Python 3.8.1rc1 is now available for testing

Link: http://feedproxy.google.com/~r/PythonInsider/~3/of_F9IzoM6Y/python-381rc1-is-now-available-for.html


Python 3.8.1rc1 is the release candidate of the first maintenance release of Python 3.8.



The Python 3.8 series is the newest feature release of the Python language, and it contains many new featur
Robin Wilson: Creating an email service for my son’s childhood memories with Python

Link: http://blog.rtwilson.com/creating-an-email-service-for-my-sons-childhood-memories-with-python/

For a number of years – since my now-toddler son was a small baby – I’ve been keeping track of various childhood achievements or memories. When I first came up with this I was rather sleep-deprived, a
Stack Abuse: Executing Shell Commands with Python

Link: https://stackabuse.com/executing-shell-commands-with-python/

Introduction
Repetitive tasks are ripe for automation. It is common for developers and system administrators to automate routine tasks like health checks and file backups with shell scripts. However,