Planet Python RSS
216 subscribers
16.9K links
Unofficial Planet Python RSS feed from planetpython.org. Maintained by @cfinnberg
Download Telegram
Doug Hellmann: imapautofiler 1.14.0 - sort-by-year action

Link: https://doughellmann.com/releases/imapautofiler-1-14-0/

What’s new in 1.14.0? add python 3.12 to test matrix add sort-by-year action
Real Python: Python's Array: Working With Numeric Data Efficiently

Link: https://realpython.com/python-array/

When you start your programming adventure, one of the most fundamental concepts that you encounter early on is the array. If you’ve recently switched to Python from another programming language, then
Django Weblog: DjangoCon Europe 2024 CFP Now Open

Link: https://www.djangoproject.com/weblog/2024/jan/01/djangocon-europe-2024-cfp/

It's a new year. What better way to start it than submitting your talk or
workshop for DjangoCon Europe 2024, in beautiful Vigo, Spain?
The Call for Proposals (CFP) is open now, and will be until midn
Hynek Schlawack: How to Ditch Codecov for Python Projects

Link: https://hynek.me/articles/ditch-codecov-python/

Codecov’s unreliability breaking CI on my open source projects has been a constant source of frustration for me for years. I have found a way to enforce coverage over a whole GitHub Actions build matr
Django Weblog: Django bugfix releases issued: 4.2.9 and 5.0.1

Link: https://www.djangoproject.com/weblog/2024/jan/02/bugfix-release/

Today we've issued
5.0.1 and
4.2.9 bugfix releases.
The release package and checksums are available from our downloads page, as well as from the Python Package Index. The PGP key ID used for this rel
Real Python: HTTP Requests With Python's urllib.request

Link: https://realpython.com/courses/python-urllib-request/

If you need to perform HTTP requests using Python, then the widely used Requests library is often the way to go. However, if you prefer to use only standard-library Python and minimize dependencies, t
Talk Python to Me: #444: The Young Coder's Blueprint to Success

Link: https://talkpython.fm/episodes/show/444/the-young-coders-blueprint-to-success

Are you early in your software dev or data science career? Maybe it hasn't even really started yet and you're still in school. On this episode we have Sydney Runkle who has had a ton of success in the
PyCoder’s Weekly: Issue #610 (Jan. 2, 2024)

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

#610 – JANUARY 2, 2024 View in Browser » Build a Scalable Flask Web Project From Scratch In this tutorial, you’ll explore the process of creating a boilerplate for a Flask web project. It’s a gr
Programiz: Python Dictionary

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

In this tutorial, you will learn about Python dictionaries - how they are created, how to access, add, and remove elements from them, and the various built-in methods associated with dictionaries.
PyCharm: How To Learn Django: A Comprehensive Guide for Beginners

Link:

Learning Django can be an exciting journey for anyone looking to develop web applications, but it can be intimidating at first. In this article, we’ll provide you with a comprehensive guide on how to
Real Python: Python's Magic Methods: Leverage Their Power in Your Classes

Link: https://realpython.com/python-magic-methods/

As a Python developer who wants to harness the power of object-oriented programming, you’ll love to learn how to customize your classes using special methods, also known as magic methods or dunder met
Mark Dufour: Fast DOOM WAD renderer in 999 lines of Python

Link: http://shed-skin.blogspot.com/2024/01/fast-doom-wad-renderer-in-999-lines-of.html

For the longest time, I've wanted to re-implement the original DOOM engine in Python, and compile it with Shedskin to get reasonable performance. So when I finally ran across a pretty small engine wri
TechBeamers Python: A Beginner’s Guide to Python Random Sampling

Link: https://www.techbeamers.com/random-sampling-in-python/

Random sampling might sound complicated, but it’s a super useful skill when working with data in Python. It helps you pick out bits of information without going through everything. Python’s got this c