PyCharm: Why Performance Matters in Python Development
Link: https://blog.jetbrains.com/pycharm/2025/10/why-performance-matters-in-python-development/
This is a guest post from Dido Grigorov, a deep learning engineer and Python programmer with 17 years of experience in the field.
Python’s flexibility and ease of use make it a go-to language for dev
Link: https://blog.jetbrains.com/pycharm/2025/10/why-performance-matters-in-python-development/
This is a guest post from Dido Grigorov, a deep learning engineer and Python programmer with 17 years of experience in the field.
Python’s flexibility and ease of use make it a go-to language for dev
The JetBrains Blog
Why Performance Matters in Python Development | The PyCharm Blog
Learn why code optimization is important and how efficient Python code improves speed, scalability, and the user experience.
"Michael Kennedy's Thoughts on Technology": Course: Agentic AI for Python Devs
Link: https://mkennedy.codes/posts/agentic-ai-programming-for-python-devs-course/
I just published a brand new course over at Talk Python: Agentic AI Programming for Python Devs.
This course teaches you how to collaborate with agentic AI tools, not just chatbots or autocomplete, b
Link: https://mkennedy.codes/posts/agentic-ai-programming-for-python-devs-course/
I just published a brand new course over at Talk Python: Agentic AI Programming for Python Devs.
This course teaches you how to collaborate with agentic AI tools, not just chatbots or autocomplete, b
Michael Kennedy's Thoughts on Technology
Course: Agentic AI for Python Devs
I just published my first course on using agentic AI for writing Python code.
Graham Dumpleton: Detecting object wrappers
Link: https://grahamdumpleton.me/posts/2025/10/detecting-object-wrappers/
It should not need to be said, but monkey patching is evil.
At least that is the mantra we like to recite, but reality is that for some things in Python it is the only practical solution.
The best exa
Link: https://grahamdumpleton.me/posts/2025/10/detecting-object-wrappers/
It should not need to be said, but monkey patching is evil.
At least that is the mantra we like to recite, but reality is that for some things in Python it is the only practical solution.
The best exa
grahamdumpleton.me
Detecting object wrappers - Graham Dumpleton
How to detect if an object has already been wrapped.
Seth Michael Larson: Easily create co-authored commits with GitHub handles
Link: https://sethmlarson.dev/easy-github-co-authored-by?utm_campaign=rss
You can add co-authors to a GitHub commit using the Co-authored-by
field in the git commit message. But what if your co-author doesn't have a
public email address listed on GitHub?
No problem, you can
Link: https://sethmlarson.dev/easy-github-co-authored-by?utm_campaign=rss
You can add co-authors to a GitHub commit using the Co-authored-by
field in the git commit message. But what if your co-author doesn't have a
public email address listed on GitHub?
No problem, you can
sethmlarson.dev
Easily create co‑authored commits with GitHub handles
You can add co-authors to a GitHub commit using the Co-authored-by
field in the git commit message. But what if your co-author doesn't have a
public email address listed on GitHub?
No problem, you...
field in the git commit message. But what if your co-author doesn't have a
public email address listed on GitHub?
No problem, you...
Real Python: The Real Python Podcast – Episode #271: Benchmarking Python 3.14 & Enabling Asyncio to Scale
Link: https://realpython.com/podcasts/rpp/271/
How does Python 3.14 perform under a few hand-crafted benchmarks? Does the performance of asyncio scale on the free-threaded build? Christopher Trudeau is back on the show this week, bringing another
Link: https://realpython.com/podcasts/rpp/271/
How does Python 3.14 perform under a few hand-crafted benchmarks? Does the performance of asyncio scale on the free-threaded build? Christopher Trudeau is back on the show this week, bringing another
Realpython
Episode #271: Benchmarking Python 3.14 & Enabling Asyncio to Scale – The Real Python Podcast
How does Python 3.14 perform under a few hand-crafted benchmarks? Does the performance of asyncio scale on the free-threaded build? Christopher Trudeau is back on the show this week, bringing another batch of PyCoder's Weekly articles and projects.
Giampaolo Rodola: Wheels for free-threaded Python now available in psutil
Link: https://gmpy.dev/blog/2025/wheels-for-free-threaded-python-now-available-in-psutil
With the release of psutil 7.1.2, wheels for free-threaded Python are now
available. This milestone was achieved largely through a community effort,
as several internal refactorings to the C code were
Link: https://gmpy.dev/blog/2025/wheels-for-free-threaded-python-now-available-in-psutil
With the release of psutil 7.1.2, wheels for free-threaded Python are now
available. This milestone was achieved largely through a community effort,
as several internal refactorings to the C code were
Django Weblog: On the Air for Django’s 20th Birthday: Special Event Station W2D
Link: https://www.djangoproject.com/weblog/2025/oct/25/on-the-air-20th-birthday-special-event-station-w2d/
Back in July, we celebrated a very special occasion: Django’s 20th birthday 🎉 To mark the occasion, three amateur radio operators (including myself) spent the next 14 days, operating evenings and week
Link: https://www.djangoproject.com/weblog/2025/oct/25/on-the-air-20th-birthday-special-event-station-w2d/
Back in July, we celebrated a very special occasion: Django’s 20th birthday 🎉 To mark the occasion, three amateur radio operators (including myself) spent the next 14 days, operating evenings and week
Django Project
On the Air for Django’s 20th Birthday: Special Event Station W2D
Posted by Adam Fast on Oct. 25, 2025
The Python Coding Stack: Impostors • How Even The Python Docs Get This Wrong* • [Club]
Link: https://www.thepythoncodingstack.com/p/impostors-how-even-the-python-docs
Can you spot all the errors in the following paragraph? There are several:Two functions that enable you to work effectively with loops in Python are zip() and enumerate(). Along with the range() funct
Link: https://www.thepythoncodingstack.com/p/impostors-how-even-the-python-docs
Can you spot all the errors in the following paragraph? There are several:Two functions that enable you to work effectively with loops in Python are zip() and enumerate(). Along with the range() funct
Thepythoncodingstack
Impostors • How Even The Python Docs Get This Wrong* • [Club]
*Spoiler alert: The docs don’t really get it “wrong”
Rodrigo Girão Serrão: TIL #135 – Build the Python documentation
Link: https://mathspp.com/blog/til/build-the-python-documentation
Today I learned how to build the Python documentation to preview changes I wanted to make.
If you're not on Windows, all it takes is to run make -C Doc venv htmllive to build the Python documentation
Link: https://mathspp.com/blog/til/build-the-python-documentation
Today I learned how to build the Python documentation to preview changes I wanted to make.
If you're not on Windows, all it takes is to run make -C Doc venv htmllive to build the Python documentation
Mathspp
TIL 135 – Build the Python documentation
Today I learned how to build the Python documentation to preview changes I wanted to make.
Brian Okken: Polite lazy imports for Python package maintainers
Link: https://pythontest.com/polite-lazy-imports-python-packages/
If you are a maintainer of a Python package, it’s nice if you pay attention to the time it takes to import your package.
Further, if you’ve got a Python package with multiple components where it’s pro
Link: https://pythontest.com/polite-lazy-imports-python-packages/
If you are a maintainer of a Python package, it’s nice if you pay attention to the time it takes to import your package.
Further, if you’ve got a Python package with multiple components where it’s pro
Pythontest
Polite lazy imports for Python package maintainers | PythonTest
Allow people to import just the part of your package that they need, when they need it.
Real Python: Quiz: Using Python Optional Arguments When Defining Functions
Link: https://realpython.com/quizzes/python-optional-arguments/
You’ll revisit how Python handles parameters and arguments—from default values and their order to flexible patterns like *args and **kwargs. You’ll also see when a simple Boolean flag can make your fu
Link: https://realpython.com/quizzes/python-optional-arguments/
You’ll revisit how Python handles parameters and arguments—from default values and their order to flexible patterns like *args and **kwargs. You’ll also see when a simple Boolean flag can make your fu
Realpython
Using Python Optional Arguments When Defining Functions Quiz – Real Python
Practice Python function parameters, default values, *args, **kwargs, and safe optional arguments with quick questions and short code tasks.
Talk Python to Me: #525: NiceGUI Goes 3.0
Link: https://talkpython.fm/episodes/show/525/nicegui-goes-3.0
Building a UI in Python usually means choosing between "quick and limited" or "powerful and painful." What if you could write modern, component-based web apps in pure Python and still keep full contro
Link: https://talkpython.fm/episodes/show/525/nicegui-goes-3.0
Building a UI in Python usually means choosing between "quick and limited" or "powerful and painful." What if you could write modern, component-based web apps in pure Python and still keep full contro
talkpython.fm
NiceGUI Goes 3.0
Building a UI in Python usually means choosing between 'quick and limited' or 'powerful and painful.' What if you could write modern, component-based web apps in pure Python and still keep full control? NiceGUI, pronounced 'Nice Guy' sits on FastAPI with…
PyCharm: The State of Django 2025
Link: https://blog.jetbrains.com/pycharm/2025/10/the-state-of-django-2025/
Link: https://blog.jetbrains.com/pycharm/2025/10/the-state-of-django-2025/
The JetBrains Blog
The State of Django 2025 | The PyCharm Blog
Develop with Django? See how over 4,600 developers are using it today and get actionable ideas to implement in your projects right now.
Real Python: Using Python Optional Arguments When Defining Functions
Link: https://realpython.com/python-optional-arguments/
You define Python functions with optional arguments to make them flexible and reusable. By assigning default values, using *args for variable arguments, or **kwargs for keyword arguments, you let your
Link: https://realpython.com/python-optional-arguments/
You define Python functions with optional arguments to make them flexible and reusable. By assigning default values, using *args for variable arguments, or **kwargs for keyword arguments, you let your
Realpython
Using Python Optional Arguments When Defining Functions – Real Python
Use Python optional arguments to handle variable inputs. Learn to build flexible function and avoid common errors when setting defaults.
PyCharm
Link:
Welcome to the highlights and key takeaways from the recently released Django Developers Survey. Now in its fourth year, this annual collaboration between the Django Software Foundation and PyCharm t
Link:
Welcome to the highlights and key takeaways from the recently released Django Developers Survey. Now in its fourth year, this annual collaboration between the Django Software Foundation and PyCharm t
Python Bytes: #455 Gilded Python and Beyond
Link: https://pythonbytes.fm/episodes/show/455/gilded-python-and-beyond
<strong>Topics covered in this episode:</strong><br>
<ul>
<li><strong><a href="https://www.reddit.com/r/Python/comments/18hn2t1/cyclopts_a_cli_library_that_fixes_13_annoying/?featured_on=pythonbytes
Link: https://pythonbytes.fm/episodes/show/455/gilded-python-and-beyond
<strong>Topics covered in this episode:</strong><br>
<ul>
<li><strong><a href="https://www.reddit.com/r/Python/comments/18hn2t1/cyclopts_a_cli_library_that_fixes_13_annoying/?featured_on=pythonbytes
pythonbytes.fm
Gilded Python and Beyond
News and announcements from the Python community for the week of Oct 27th, 2025