Brett Cannon: Why I won't be attending PyCon US this year
I normally don&apost talk about politics here, but as I write this the US has started a trade war with Canada (which is partially paused for a month, but that doesn&apost remove the threat). It...
View ArticleSeth Michael Larson: Your GitHub Copilot access has been renewed 🤡
As a maintainer of a "popular open source project" ever since Copilot was announced I've been receiving monthly reminders that my free GitHub Copilot access has been renewed.If I was paying for the...
View ArticleReal Python: The Real Python Podcast – Episode #242: Eric Matthes: Maybe...
Should you always start testing your code with unit tests? When does it make sense to look at integration or end-to-end testing as a first step instead? This week on the show, we speak with previous...
View ArticleReal Python: Quiz: Build an LLM RAG Chatbot With LangChain
In this quiz, you’ll test your understanding of building a RAG chatbot using LangChain and Neo4j. You’ll revisit the process of designing a chatbot and working with graph databases.[ Improve Your...
View ArticlePyCon: Support PyLadies: Donate to the PyLadies Auction at PyCon US 2025!
PyCon US 2025 is quickly approaching and we can’t wait to see all of you there! We're reaching out to our community to help support one of our favorite events: the PyLadies Auction. Our wonderful...
View ArticleReal Python: Quiz: Python Textual: Build Beautiful UIs in the Terminal
In this quiz, you’ll test your understanding of the Python Textual library. This library is used for creating text-based interface applications for the terminal. By working through this quiz, you’ll...
View ArticleNed Batchelder: Faster branch coverage measurement
After nearly two years, I think this is finally ready: coverage.py can use sys.monitoring to more efficiently measure branch coverage.I would love for people to try it, but it’s a little involved at...
View ArticleLucas Cimon: Quelques sites web que j'ai conçu
Au cours des 18 derniers mois, j'ai eu l'occasion de concevoir plusieurs sites web pour des proches et des associations où je suis bénévole.Dans cet article, je reviens sur mes choix de solutions pour...
View ArticleSeth Michael Larson: Post Malone Oreos
@keyframes rotation { from { transform: rotate(0deg); } to { transform: rotate(359deg); } }Apparently I talk about my love for Post Malone's music too much, because I received not one, but two...
View ArticleReal Python: Python News Roundup: March 2025
Spring isn’t the only thing in the air—new Python releases are here! Last month, Python’s core development team released versions 3.13.2, 3.12.9, and 3.14.0 alpha 5 of the language. The 3.14.0a5...
View ArticlePython Bytes: #423 Traveling the Python Universe
<strong>Topics covered in this episode:</strong><br> <ul> <li><strong><a...
View ArticleDjango Weblog: Happy International Women's Day! 🎉 💜
This International Women's Day, we're celebrating a historic milestone in Django’s journey! 🚀For the first time ever, Django has women in every leadership position within the project:2 Django Steering...
View ArticlePython Software Foundation: PSF Distinguished Service Award Granted to Van...
Van Lindberg, a longtime member of the PSF Board, has been recognized with the PSF’s Distinguished Service Award. Van was the co-chair and then Chair of PyCon from 2008-2012, served on the PSF Board...
View ArticleReal Python: Getting to Know Duck Typing in Python
Python makes extensive use of a type system known as duck typing. This system is based on an object’s behavior and interface. Many built-in classes and tools support this type system, which makes them...
View ArticlePyCoder’s Weekly: Issue #672: Binary Data, Tail Calls, Pickles, and More...
#672 – MARCH 11, 2025View in Browser »Bytes Objects: Handling Binary Data in Python In this tutorial, you’ll learn about Python’s bytes objects, which help you process low-level binary data. You’ll...
View ArticlePython Software Foundation: PSF Distinguished Service Award Granted to Thomas...
Thomas Wouters, a longtime member of the PSF Board, has been recognized with the PSF’s Distinguished Service Award. Over the last 25 years, Thomas has been a steady, welcoming presence in the Python...
View ArticleReal Python: Python Textual: Build Beautiful UIs in the Terminal
Have you ever wanted to create an app with an appealing interface that works in the command line? Welcome to Textual, a Python toolkit and framework for creating beautiful, functional text-based user...
View ArticlePython Engineering at Microsoft: New Python Driver for SQL Server and Azure SQL!
We’re thrilled to announce the alpha release of our new open-source Python driver for Microsoft SQL Server and the Azure SQL family, now available on GitHub: mssql-python.Built from the ground up, this...
View ArticleMirek Długosz: Django: data modified in pre_save signal is not saved
When I was working on my first Django project, I encountered a problem where modifications done inside pre_save signal were not stored in the database. Back then it took me a couple of hours to figure...
View ArticleTechBeamers Python: Enforcing Unsigned Integers in Python: A Complete Guide
Python does not have built-in unsigned integers, unlike C, C++, or Java. This can create problems when:✔ You need strictly non-negative values✔ You are porting code from C/C++✔ You work with binary...
View Article