Django Weblog: DSF member of the month - Elena Williams
For June 2025, we welcome Elena Williams as our DSF member of the month! ⭐Elena is a dedicated member of the Django community. She is part of the Code of Conduct Working Group and she is a Django Girls...
View ArticlePyCoder’s Weekly: Issue #686: Free-Threaded Update, GPU Programming, GitHub...
#686 – JUNE 17, 2025View in Browser »State of Free-Threaded Python This is a blog post from the Python Language Summit 2025 giving an update on the progress of free-threaded Python. You may also be...
View ArticleReal Python: Python Project: Build a Word Count Command-Line App
The word count command (wc) is a classic utility that you might use to determine the number of lines, words, and bytes in files or standard input. It’s a staple tool for anyone working with text files...
View ArticleTalk Python to Me: #510: 10 Polars Tools and Techniques To Level Up Your Data...
Are you using Polars for your data science work? Maybe you've been sticking with the tried-and-true Pandas? There are many benefits to Polars directly of course. But you might not be aware of all the...
View ArticleTalk Python Blog: New Theme Song: Served In A Flask
Those of you who were early listeners of Talk Python To Me might remember the amazing theme song we launched with: Developers, Developers, Developers by Smixx. Thanks to Smixx for letting us use his...
View ArticlePyCharm: Training Your ML Models With Cadence
In the rapidly evolving domains of machine learning (ML) and artificial intelligence (AI), the tools and technologies used by developers can significantly influence the speed, efficiency, and...
View ArticleEuroPython: June Newsletter: Last Chance for Tickets!
Hello, Pythonistas! 🐍We added a lot of new subscribers since the last newsletter – if this is your first newsletter – Welcome! 🎉TL;DR:Some of the tickets are sold out already 🎉We have a Python...
View ArticleReal Python: The Real Python Podcast – Episode #254: Scaling Python Web...
What goes into scaling a web application today? What are resources for learning and practicing DevOps skills? This week on the show, Calvin Hendryx-Parker is back to discuss the tools and...
View ArticleRuslan Spivak: Book Notes: Full Frontal Calculus by Seth Braver — Chapter 1...
“Where there is life, there is change; where there is change, there is calculus.”— Seth BraverI recently went back to studying math to rebuild my foundations for AI and machine learning. I didn’t...
View ArticleThe Python Coding Stack: I Want to Remove Duplicates from a Python List • How...
Another short article today to figure out ways to remove duplicate values from a list. The ideal solution depends on what you really need.Let's explore.Start With a ListWell, we need a list...
View ArticleArmin Ronacher: My First Open Source AI Generated Library
I'm currently evaluating how different models perform when generating XML versus JSON. Not entirely unexpectedly, XML is doing quite well — except for one issue: the models frequently return invalid...
View ArticleWill McGugan: Seeking sponsorship for Rich and Textual
After a somewhat stressful three years running a startup, I am takings a year's sabbatical. I'm going to use this time to focus on my health‐something I have neglected. As good as it feels not to work...
View ArticlePython Software Foundation: 2025 PSF Board Election Schedule
The PSF Board elections are a chance for the community to choose representatives to help the Python Software Foundation create a vision for and build the future of the Python community. This year,...
View ArticlePython Bytes: #437 Python Language Summit 2025 Highlights
<strong>Topics covered in this episode:</strong><br> <ul> <li><em>* <a...
View ArticleDaniel Roy Greenfeld: TIL: HTML 404 errors for FastAPI
I had a TIL about custom responses in FastAPI but there's enough nuance that it deserves a full blog post. In the meantime, here's a TIL about custom HTTP responses....
View ArticleReal Python: Python enumerate(): Simplify Loops That Need Counters
Python’s enumerate() function helps you with loops that require a counter by adding an index to each item in an iterable. This is particularly useful when you need both the index and value while...
View ArticleReal Python: Starting With DuckDB and Python
The DuckDB database provides a seamless way to handle large datasets in Python with Online Analytical Processing (OLAP) optimization. You can create databases, verify data imports, and perform...
View ArticlePyCoder’s Weekly: Issue #687: Scaling With Kubernetes, Substrings, Big-O, and...
#687 – JUNE 24, 2025View in Browser »Scaling Web Applications With Kubernetes and Karpenter What goes into scaling a Python web application today? What are resources for learning and practicing DevOps...
View ArticlePyPodcats: Trailer: Episode 9 With Tamara Atanasoska
A preview of our chat with Tamara Atanasoska. Watch the full episode on June 27, 2025A preview of our chat with Tamara Atanasoska. Watch the full episode on June 27, 2025Sneak Peek of our chat with...
View ArticleMike Driscoll: An Intro to ty – The Extremely Fast Python type checker
Ty is a brand new, extremely fast Python type checker written in Rust from the fine folks at Astral, the makers of Ruff. Ty is in preview and is not ready for production use, but you can still try it...
View ArticleReal Python: Your Guide to the Python print() Function
If you’re like most Python users, then you probably started your Python journey by learning about print(). It helped you write your very own “Hello, World!” one-liner and brought your code to life on...
View ArticleTestDriven.io: Building a Multi-tenant App with Django
This tutorial looks at how to implement multi-tenancy in Django.
View ArticleTalk Python to Me: #511: From Notebooks to Production Data Science Systems
If you're doing data science and have mostly spent your time doing exploratory or just local development, this could be the episode for you. We are joined by Catherine Nelson to discuss techniques and...
View ArticlePeter Bengtsson: Native connection pooling in Django 5 with PostgreSQL
Enabling native connection pooling in Django 5 gives me a 5.4x speedup.
View Article