Planet Python RSS
216 subscribers
16.9K links
Unofficial Planet Python RSS feed from planetpython.org. Maintained by @cfinnberg
Download Telegram
Python Insider: Python 3.13.0 alpha 1 is now available

Link: https://pythoninsider.blogspot.com/2023/10/python-3130-alpha-1-is-now-available.html

 It’s not a very exciting release (yet), but it’s time for the first alpha of Python 3.13 anyway!https://www.python.org/downloads/release/python-3130a1/This is an early developer preview of Python 3.1
Real Python: The Real Python Podcast – Episode #176: Building Python Best Practices and Fundamental Skills

Link: https://realpython.com/podcasts/rpp/176/

What fundamental developer skills are new Python users missing? What best practices might developers without a computer science background be lacking? Christopher Trudeau is back on the show this week
Django Weblog: Announcing DSF Working Groups

Link: https://www.djangoproject.com/weblog/2023/oct/13/announcing-dsf-working-groups/

Today we’re announcing some changes to how the DSF gets work done. We
want to make it easier for people to contribute meaningfully to the
DSF’s mission. Previously, you more or less needed to be a boa
Django Weblog: 2024 DSF Board Nominations

Link: https://www.djangoproject.com/weblog/2023/oct/13/2024-dsf-board-nominations/

Nominations are open for the 2024 Django Software Foundation Board of Directors.
In 2023 we introduced a staggered term for directors, which means at this time there are three positions currently open
PyCharm: PyCharm 2023.2.3 Is Out!

Link: https://blog.jetbrains.com/pycharm/2023/10/2023-2-3/

You can update to this version from inside the IDE, using the Toolbox App, or using snaps if you are an Ubuntu user. You can also download it from our website.
Download PyCharm 2023.2.3
PEP 701: Forma
Django Weblog: Announcing DjangoCon Europe 2024 in Vigo, Spain!

Link: https://www.djangoproject.com/weblog/2023/oct/14/djangocon-europe-2024/

We're thrilled to announce the much-anticipated return of DjangoCon Europe, set to take place in the vibrant city of Vigo, Spain, in 2024!
DjangoCon Europe has been a cornerstone of the Django communi
Armin Ronacher: EuroRust 2023 Reflections: What's a Conference For?

Link: http://lucumr.pocoo.org/2023/10/14/eurorust-whats-a-conference

I very rarely write recaps of conferences but this time around I could not
resist. This is for a lot of reasons. To kick things off, quite a bit of
what was on my mind relates quite directly to a per
Talk Python to Me: #433: Litestar: Effortlessly Build Performant APIs

Link: https://talkpython.fm/episodes/show/433/litestar-effortlessly-build-performant-apis

We all know about Flask and Django. And of course FastAPI made a huge splash when it came on the scene a few years ago. But new web frameworks are being creating all the time. And they have these earl
Real Python: Build a Blog From Scratch With Django

Link: https://realpython.com/build-a-blog-from-scratch-django/

There are plenty of blogging platforms out there that you can use out of the box. However, building your own blog from scratch with Django is a great way to keep control over your content. Even if you
Python Bytes: #356 Ripping from PyPI

Link: https://pythonbytes.fm/episodes/show/356/ripping-from-pypi

<strong>Topics covered in this episode:</strong><br>

<ul>
<li><a href="https://www.psycopg.org/psycopg3/"><strong>Psycopg 3</strong></a></li>
<li><a href="https://github.com/konradhalas/dacite"><str
Real Python: Python Basics Exercises: Object-Oriented Programming

Link: https://realpython.com/courses/object-oriented-programming-exercises/

In Python Basics: Object-Oriented Programming, you learned how OOP, or object-oriented programming, is a method of structuring a program by bundling related properties and behaviors into individual ob
PyCoder’s Weekly: Issue #599 (Oct. 17, 2023)

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

#599 – OCTOBER 17, 2023 View in Browser » How to Sort Unicode Strings Alphabetically in Python In this tutorial, you’ll learn how to correctly sort Unicode strings in Python while avoiding commo
PyBites: Our Concern with Programming Certifications

Link: https://pybit.es/articles/our-concern-with-programming-certifications/

In our new podcast episode, recorded in Córdoba, Spain, we talk about programming certifications and how they might not represent real developer skills.
Watch it on our YouTube channel:


Or listen he
TechBeamers Python: Reverse a String in Python

Link: https://www.techbeamers.com/reverse-a-string-in-python/

In Python, reversing a string can be a useful operation in various programming tasks. Reversed strings are commonly used for tasks like checking for palindromes, text processing, and data manipulation
TechBeamers Python: Python Append String Tutorial

Link: https://www.techbeamers.com/python-append-string/

This tutorial deep dives into how Python appends strings using different ways. Appending a string in Python means adding one string to the end of another string. This is a common task in programming,
Django Weblog: Nominations for 2023 Malcolm Tredinnick Memorial Prize

Link: https://www.djangoproject.com/weblog/2023/oct/18/nominations-for-2023-malcolm-tredinnick-memorial-p/

Hello Everyone!
It is that time of year again when we recognize someone from our community in memory of our friend Malcolm.
Malcolm was an early core contributor to Django and had both a huge influenc
Real Python: Python's F-String for String Interpolation and Formatting

Link: https://realpython.com/python-f-strings/

Python f-strings provide a quick way to interpolate and format strings. They’re readable, concise, and less prone to error than traditional string interpolation and formatting tools, such as the .form