Planet Python RSS
214 subscribers
17.1K links
Unofficial Planet Python RSS feed from planetpython.org. Maintained by @cfinnberg
Download Telegram
Python Insider: Python 3.7.12 and 3.6.15 security updates now available

Link: http://feedproxy.google.com/~r/PythonInsider/~3/vI_S3Fb6-ks/python-3712-and-3615-security-updates.html

Python 3.7.12 and 3.6.15,  the lastest security fix rollups for Python 3.7 and Python 3.6, are now available. You can find the release files, links to the changelogs, and more information here:    htt
John Ludhi/nbshare.io: How To Take User Input From The Command Line

Link: https://www.nbshare.io/notebook/788267718/How-To-Take-User-Input-From-The-Command-Line/

How To Take User Input From The Command LinePython provides developers with built-in functions that can be used to get input directly from users and interact with them using the command line (or shell
Mike Driscoll: PySimpleGUI: Using an Image as a Button

Link: https://www.blog.pythonlibrary.org/2021/09/05/pysimplegui-using-an-image-as-a-button/

When you create a graphical user interface for your amazing program, you want to add a little bit of yourself to the application. One way to do that is to use images as buttons. While some people find
Anarcat: Automating major Debian upgrades

Link: https://anarc.at/blog/2021-09-05-bullseye-upgrade-notes/

It's major upgrade time again! The Debian project just published
the Debian 11 "bullseye" release, and it's pretty awesome! This
makes me realized that I have never written here about my peculiar
upgr
Łukasz Langa: Weekly Report 2021, August 30 - September 5

Link: https://lukasz.langa.pl/94b5086c-81df-498a-9f8b-f9e06f5d9538/

Slower week in terms of pull requests as I coded more myself and did some release management work.
Matthew Wright: Version control for Jupyter notebooks

Link: https://www.wrighters.io/version-control-for-jupyter-notebooks/

Jupyter notebooks are hard to diff and merge since they contain both code and output, but tools and practices can make version control easier.The post Version control for Jupyter notebooks appeared fi
Mike Driscoll: PyDev of the Week: Déborah Mesquita

Link: https://www.blog.pythonlibrary.org/2021/09/06/pydev-of-the-week-deborah-mesquita/

This week we welcome Déborah Mesquita as our PyDev of the Week! Déborah is a content writer at Real Python. You can see what she is up to over on her website or by checking out her GitHub profile.

Le
Reuven Lerner: Missing my blog posts? Check me out on YouTube!

Link: https://lerner.co.il/2021/09/06/missing-my-blog-posts-check-me-out-on-youtube/

I haven’t been posting much to this blog of late, in part because I’ve been posting Python-related videos on YouTube. Just in the last month or two, I’ve posted:
Scraping HTML with Pandas: https://ww
Python Morsels: Parsing command-line arguments in Python

Link: https://www.pythonmorsels.com/topics/parsing-command-line-arguments-python/




Transcript
Let's talk about parsing command line arguments in Python.
Parsing command-line arguments
We have a program here called add.py that uses Python's argparse module to parse two arguments,
Stack Abuse: Creating a REST API with Django REST Framework

Link: https://stackabuse.com/creating-a-rest-api-with-django-rest-framework/

Introduction
REST APIs are an industry-standard way for web services to send and receive data. They use HTTP request methods to facilitate the request-response cycle and typically transfer data using
Quansight Labs Blog: Making Numpy Accessible: Guidelines and Tools

Link: https://labs.quansight.org/blog/2021/07/numpy-accessibility-guidelines/


Header illustration by author, Mars Lee
Numpy is now foundational to Python scientific computing. Our efforts reach
millions of developers each month. As our user base grows, we recognize that we
are
Mike Driscoll: Matplotlib – An Intro to Creating Graphs with Python

Link: https://www.blog.pythonlibrary.org/2021/09/07/matplotlib-an-intro-to-creating-graphs-with-python/

Data visualizations are an important method of sharing your data with others. Some people refer to visualizations as plots, charts, or graphs. These names are synonymous in this article.
Python has ma
Real Python: Graph Your Data With Python and ggplot

Link: https://realpython.com/courses/graph-data-with-python-and-ggplot/

In this course, you’ll learn how to use ggplot in Python to create data visualizations using a grammar of graphics. A grammar of graphics is a high-level tool that allows you to create data plots in a
PyCoder’s Weekly: Issue #489 (Sept. 7, 2021)

Link: https://pycoders.com/issues/489

#489 – SEPTEMBER 7, 2021 View in Browser » PEP 668: Graceful Cooperation Between External and Python Package Managers This draft PEP proposes a way for resolving conflicts between OS package man
Python Insider: Python 3.10.0rc2 is available

Link: http://feedproxy.google.com/~r/PythonInsider/~3/MNLSuW5j-cI/python-3100rc2-is-available.html

Python 3.10 is one month away, can you believe it? This snake is still trying to bite as it has been an interesting day of fighting fires, release blockers, and a bunch of late bugs but your friendly
John Ludhi/nbshare.io: Python Is Integer

Link: https://www.nbshare.io/notebook/331114525/Python-Is-Integer/








Python Is Integer








This notebook explains how to check in Python if a number is a integer.








There are multiple ways to check for integer in Python 2 and Python 3.









isinsta
Stack Abuse: Abstract Factory Design Pattern in Python

Link: https://stackabuse.com/abstract-factory-design-pattern-in-python/

Introduction
Design patterns help make code understandable, scalable, and reusable. There are different categories of design patterns, depending on the problems being addressed. When code is modulariz
Mike Driscoll: Python 3.10 – Parenthesized Context Managers

Link: https://www.blog.pythonlibrary.org/2021/09/08/python-3-10-parenthesized-context-managers/

Python 3.10 is coming out next month, so now is the time to start talking about the new features that it will contain. The core developers of Python recently announced that they are adding parenthesiz
TestDriven.io: Storing Django Static and Media Files on DigitalOcean Spaces

Link: https://testdriven.io/blog/django-digitalocean-spaces/

This tutorial shows how to configure Django to load and serve up static and media files, public and private, via DigitalOcean Spaces.