Eli Bendersky: Faster XML stream processing in Go
XML processing was all the rage 15 years ago; while it's less prominent these days, it's still an important task in some application domains. In this post I'm going to compare the speed of...
View ArticleEli Bendersky: My favorite prime number generator
Many years ago I've re-posted a Stack Overflow answer with Python code for a terse prime sieve function that generates a potentially infinite sequence of prime numbers ("potentially" because it will...
View ArticleTest and Code: 220: Getting the most out of PyCon, including juggling - Rob...
PyCon US is just around the corner. I've asked Rob Ludwick to come on the show to discuss how to get the most out of your PyCon experience. There's a lot to do. A lot of activities to juggle,...
View ArticlePython People: Rob Ludwick - Getting the most out of PyCon, including juggling
PyCon US is just around the corner. I've asked Rob Ludwick to come on the show to discuss how to get the most out of your PyCon experience. There's a lot to do. A lot of activities to juggle,...
View ArticleDjango Weblog: Last call for DjangoCon Europe 2025 organizers
Note: This text is an updated and clarified version of the previous call. We have opened up more 2025 event dates; targeting January - April and now also June 2025. DjangoCon Europe is a major pillar...
View ArticleDoug Hellmann: sphinxcontrib-sqltable 2.1.0 - SQLAlchemy 2.0 support
What’s new in 2.1.0? update packaging to use pyproject.toml Update sqltable.py to support SQLAlchemy 2.0 (contributions by Gabriel Gaona) Pin SQLAlchemy>=2.0 to prevent backwards incompatibility...
View ArticleZato Blog: What is an API gateway?
What is an API gateway? 2024-05-06, by Dariusz Suchojad In this article, we are going to use Zato in its capacity as a multi-protocol Python API gateway - we will integrate a few popular technologies,...
View ArticleSeth Michael Larson: Backup Game Boy ROMs and saves on Ubuntu
Backup Game Boy ROMs and saves on Ubuntu About• Blog• Newsletter• LinksBackup Game Boy ROMs and saves on UbuntuPublished 2024-05-06 by Seth Larson Reading time: minutes I'm a big fan of retro video...
View ArticleEuroPython Society: 🐍 Community Call for Venues - EuroPython 2025
Greetings to all community organizers across Europe! 🌍We are thrilled to announce the opening of the Call for Venues for EuroPython 2025! 🌐EuroPython is the world&aposs oldest volunteer-led Python...
View ArticleMike Driscoll: How to Read and Write Parquet Files with Python
Apache Parquet files are a popular columnar storage format used by data scientists and anyone using the Hadoop ecosystem. It was developed to be very efficient in terms of compression and encoding....
View ArticleReal Python: Python News: What's New From April 2024
In April 2024, Python’s core development team released versions 3.13.0a6 and 3.12.3 of the language! The former received several exciting features, improvements, and optimizations, while the latter got...
View ArticleDjango Weblog: Django bugfix releases issued: 5.0.5 and 4.2.12
Today we've issued 5.0.5 and 4.2.12 bugfix releases.The release package and checksums are available from our downloads page, as well as from the Python Package Index. The PGP key ID used for this...
View ArticleRobin Wilson: Simple segmentation of geospatial images
I had a need to do some segmentation of some satellite imagery the other day, for a client. Years ago I was quite experienced at doing segmentation and classification using eCognition but that was...
View ArticleMarcos Dione: Collating, processing, managing, backing up and serving a...
In the last twodays I have commented a little bit how I process and manage my photos. I'm not a very avid photographer, I have like 350 gigabytes of photos, most of them are yet not processed, around...
View ArticleReal Python: Flattening a List of Lists in Python
Sometimes, when you’re working with data, you may have the data as a list of nested lists. A common operation is to flatten this data into a one-dimensional list in Python. Flattening a list involves...
View ArticleShannon -jj Behrens: Python: My Favorite Python Tricks for LeetCode Questions
I've been spending a lot of time practicing on LeetCode recently, so I thought I'd share some of my favorite intermediate-level Python tricks. I'll also cover some newer features of Python you may not...
View ArticleDjango Weblog: Django bugfix releases issued: 5.0.6 and 4.2.13
Today we've issued 5.0.6 and 4.2.13 as reissues of the 5.0.5 and 4.2.12 bugfix releases.The release package and checksums are available from our downloads page, as well as from the Python Package...
View ArticlePyCoder’s Weekly: Issue #628 (May 7, 2024)
#628 – MAY 7, 2024View in Browser »TypeIs Does What I Thought TypeGuard Would Do in Python In this post, Redowan discusses the fact that TypeGuard has always confused him, and that the newer TypeIs...
View ArticlePython Bytes: #382 A Simple Game
<strong>Topics covered in this episode:</strong><br> <ul> <li><a href="https://github.com/nektos/act"><strong>act: Run your GitHub Actions...
View Article