Planet Python RSS
217 subscribers
16.7K links
Unofficial Planet Python RSS feed from planetpython.org. Maintained by @cfinnberg
Download Telegram
Real Python: Python range(): Represent Numerical Ranges

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

In Python, the range() function generates a sequence of numbers, often used in loops for iteration. By default, it creates numbers starting from 0 up to but not including a specified stop value. You c
Django Weblog: DjangoCon Europe 2026 call for organizers completed

Link: https://www.djangoproject.com/weblog/2024/nov/24/djangocon-europe-2026-call-for-organizers-complete/

The DjangoCon Europe 2026 call for organizers is now over. We’re elated to report we received three viable proposals, a clear improvement over recent years.
We’ll let the successful team decide when a
Django Weblog: 2024 Malcolm Tredinnick Memorial Prize awarded to Rachell Calhoun

Link: https://www.djangoproject.com/weblog/2024/nov/24/2024-malcolm-tredinnick-memorial-prize-awarded-to-/

This year it was hard to decide, and we wanted to also show who else got nominated, because they also deserve recognition, so it took a bit longer than we expected.

The Django Software Foundation Boa
Hugo van Kemenade: A surprising thing about PyPI's BigQuery data

Link: https://dev.to/hugovk/a-surprising-thing-about-pypis-bigquery-data-2g9o

You can get download numbers for PyPI packages (or projects) from a Google BigQuery dataset. You need a Google account and credentials, and Google gives 1 TiB of free quota per month.
Each month, I ha
Julien Tayon: The advantages of HTML as a data model over basic declarative ORM approach

Link: https://beauty-of-imagination.blogspot.com/2024/11/the-advantages-of-html-as-data-model.html

Very often, backend devs don't want to write code.
For this, we use one trick : derive HTML widget for presentation, database access, REST endpoints from ONE SOURCE of truth and we call it MODEL.
A tr
Zato Blog: SSH commands as API microservices

Link: https://zato.io/en/blog/ssh-api-service.html


SSH commands as API microservices


2024-11-25, by Dariusz Suchojad


This is a quick guide on how to turn SSH commands into a REST API service. The use-case may be remote administration
of devices
Real Python: Speed Up Your Python Program With Concurrency

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

Concurrency refers to the ability of a program to manage multiple tasks at once, improving performance and responsiveness. It encompasses different models like threading, asynchronous tasks, and multi
Trey Hunner: New Python Jumpstart course

Link: https://treyhunner.com/2024/11/new-python-jumpstart-course/

I’ve just recently launched a self-paced introduction to Python that is extremely hands-on.
It’s called Python Jumpstart and it’s based on introductory Python curriculum that I have been iterating on
Mike Driscoll: Black Friday Python Deals 2024

Link: https://www.blog.pythonlibrary.org/2024/11/25/black-friday-python-deals-2024/

Black Friday and Cyber Monday are nearly here, so it’s time to do a Python sale! All my books and courses are 35% off until December 4th if you use this code: BF24 at checkout.
You can learn about any
Wingware: Wing Python IDE Version 10.0.7 - November 25, 2024

Link: https://wingware.com/news/2024-11-25

This minor release reduces Python 3.12+ debugger overhead and improves Python code analysis.
See the change log for details.
Download Wing 10 Now: Wing Pro |
Wing Personal |
Wing 101 |
Compare Product
Real Python: Managing Dependencies With Python Poetry

Link: https://realpython.com/courses/managing-dependencies-with-poetry/

When your Python project relies on external packages, you need to make sure you’re using the right version of each package. After an update, a package might not work as it did before. A dependency man
PyCoder’s Weekly: Issue #657 (Nov. 26, 2024)

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

#657 – NOVEMBER 26, 2024 View in Browser » NumPy Practical Examples: Useful Techniques In this tutorial, you’ll learn how to use NumPy by exploring several interesting examples. You’ll read data
Armin Ronacher: Constraints are Good: Python's Metadata Dilemma

Link: http://lucumr.pocoo.org/2024/11/26/python-packaging-metadata

There is currently an effort underway to build a new universal lockfile
standard for Python, most of which is taking place on the Python
discussion forum. This initiative has highlighted the difficul
Brett Cannon: What the PSF Conduct WG does

Link: https://snarky.ca/what-the-psf-conduct-wg-does/

In the past week I had two people separately tell me what they thought the PSF Conduct WG did and both were wrong (and incidentally in the same way). As such, I wanted to clarify what exactly the WG d
Django Weblog: Django 6.x Steering Council Candidate Registration

Link: https://www.djangoproject.com/weblog/2024/nov/27/django-6x-steering-council-candidate-registration/

Following our announcement of the 6.x Steering Council elections, today we open candidate registrations. Registrations will be open until December 4 2024 at 23:59 Anywhere on Earth.
Register as a Stee
Kay Hayen: Nuitka Release 2.5

Link: https://nuitka.net/posts/nuitka-release-25.html

This is to inform you about the new stable release of Nuitka. It is the extremely compatible Python compiler,
“download now”.
This release focused on Python 3.13 support, but also on improved
compatib
PyPodcats: Episode 7: With Anna Makarudze

Link: https://pypodcats.live/episodes/ep-7/

Learn about Anna's journey. Since discovering Python and Django in 2015, Anna has been actively contributing to the Django community and taking up leadership roles within DSF and Django Girls.Learn ab
Real Python: Continuous Integration and Deployment for Python With GitHub Actions

Link: https://realpython.com/github-actions-python/

Creating software is an achievement worth celebrating. But software is never static. Bugs need to be fixed, features need to be added, and security demands regular updates. In today’s landscape, with