Zero to Mastery: [March 2025] Python Monthly Newsletter 🐍
64th issue of Andrei Neagoie's must-read monthly Python Newsletter: CUDA for Python Devs, PyPi Wheels, TL;DR Of LLMs, and much more. Read the full newsletter to get up-to-date with everything you need...
View ArticleReal Python: Python's Bytearray: A Mutable Sequence of Bytes
Python’s bytearray is a mutable sequence of bytes that allows you to manipulate binary data efficiently. Unlike immutable bytes, bytearray can be modified in place, making it suitable for tasks...
View ArticleAri Lamstein: censusdis v1.4.0 is now on PyPI
I recently contributed a new module to the censusdis package. This resulted in a new version of the package being pushed to PyPI. You can install it like this: $ pip install censusdis -U #Verify that...
View ArticleGlyph Lefkowitz: A Bigger Database
A Database FileWhen I was 10 years old, and going through a fairly difficult time, I was lucky enough to come into the possession of a piece of software called Claris FileMaker Pro™.FileMaker allowed...
View ArticleWingware: Wing Python IDE 11 Early Access - March 27, 2025
Wing 11 is now available as an early access release, with improved AI assisted development, support for the uv package manager, improved Python code analysis, improved custom key binding assignment...
View ArticleTryton News: Newsletter April 2025
Last month we focused on fixing bugs, improving the behaviour of things, speeding-up performance issues - building on the changes from our last release. We also added some new features which we would...
View ArticleeGenix.com: Python Meeting Düsseldorf - 2025-04-09
The following text is in German, since we're announcing a regional user group meeting in Düsseldorf, Germany.AnkündigungDas nächste Python Meeting Düsseldorf findet an folgendem Termin...
View ArticleMike Driscoll: Textual – How to Add Widgets to a Container
Textual is an excellent Python package for creating beautiful user interfaces in your terminal. By default, Textual will arrange your widgets starting at the top of the screen and appending them in a...
View ArticleReal Python: Building a Code Image Generator With Python
If you’re active on social media, then you know that images and videos are popular forms of content. As a programmer, you mainly work with text, so sharing the content that you create on a daily basis...
View ArticlePyCoder’s Weekly: Issue #675: Optimization, DuckDB, Outliers, and More (April...
#675 – APRIL 1, 2025View in Browser »An April Fool’s free issue. All content was curated before April 1st and is guranteed to be April Fool’s free.Optimizing With Generators, Expressions, &...
View ArticleTest and Code: Python 3.14 won't repeat with pytest-repeat
pytest-repeat is a pytest plugin that makes it easy to repeat a single test, or multiple tests, a specific number of times. Unfortunately, it doesn't seem to work with Python 3.14, even though there...
View ArticlePython GUIs: Getting Started with Streamlit — Build your first Streamlit app...
Streamlit is an open-source Python library that makes it easy to create and share custom web apps for machine learning and data science. In this tutorial we'll take a first look at Streamlit,...
View ArticleDjango Weblog: Django security releases issued: 5.1.8 and 5.0.14
In accordance with our security release policy, the Django team is issuing releases for Django 5.1.8 and Django 5.0.14. These releases address the security issues detailed below. We encourage all users...
View ArticleDjango Weblog: Django 5.2 released
The Django team is happy to announce the release of Django 5.2.The release notes showcase a composite of new features. A few highlights are:All models are automatically imported in the shell by...
View ArticleReal Python: How to Strip Characters From a Python String
By default, Python’s .strip() method removes whitespace characters from both ends of a string. To remove different characters, you can pass a string as an argument that specifies a set of characters to...
View ArticleSeth Michael Larson: Nintendo Switch 2: DRM, expensive, and GameCube
So the Switch 2 got announced in a Nintendo Direct yesterday. The event itself was essentially an unending series of incredible new information about the Switch 2 console and games. Here are my mixed...
View ArticlePython GUIs: Build a Desktop Sticky Notes Application with PySide6 — Create...
Do you ever find yourself needing to take a quick note of some information but have nowhere to put it? Then this app is for you! This virtual sticky notes (or Post-it notes) app allows you to keep...
View ArticleMike Driscoll: ANN: Spring Python eBook Sale 2025
I am running a Spring sale on all my currently published Python books. You can get 25% off any of my complete books by using this code at checkout: MSON4QP Learn Python Today!I have books on the...
View ArticleEveryday Superpowers: Why I Finally Embraced Event Sourcing—And Why You...
This is the first entry in a five-part series about event sourcing:Why I Finally Embraced Event Sourcing—And Why You Should TooWhat is event sourcing and why you should carePreventing painful...
View ArticleReal Python: The Real Python Podcast – Episode #245: GUIs & TUIs:...
What are the current Python graphical user interface libraries? Should you build everything in the terminal and create a text-based user interface instead? Christopher Trudeau is back on the show this...
View ArticleGiampaolo Rodola: Speedup pytest startup
Preface: the migration to pytestLast year, after 17 years since the inception of the project, I decided to start adopting pytest into psutil (see psutil/#2446). The advantages over unittest are...
View ArticlePython Engineering at Microsoft: Python in Visual Studio Code – April 2025...
We’re excited to announce the April 2025 release of the Python, Pylance and Jupyter extensions for Visual Studio Code!This release includes the following announcements:Enhanced Python development using...
View ArticleTechBeamers Python: Code Without Limits: The Best Online Python Compilers for...
Explore the top online Python compilers for free. With these, your development environment is always just one browser tab away. Imagine this: You’re sitting in a coffee shop when inspiration strikes....
View ArticlePython Engineering at Microsoft: Build AI agents with Python in #AgentsHack
2025 is the year of AI agents! But what exactly is an agent, and how can you build one? Whether you’re a seasoned developer or just starting out, this free three-week virtual hackathon is your chance...
View ArticleEli Bendersky: Reproducing word2vec with JAX
The word2vec model was proposed in a 2013 paper by Google researchers called "Efficient Estimation of Word Representations in Vector Space", and was further refined by additional papers from the same...
View Article