PyCoder’s Weekly: Issue #668: NumPy, Compiling Python 1.0, BytesIO, and More...
#668 – FEBRUARY 11, 2025View in Browser »NumPy Techniques and Practical Examples In this video course, you’ll learn how to use NumPy by exploring several interesting examples. You’ll read data from a...
View ArticleKushal Das: pass using stateless OpenPGP command line interface
Yesterday I wrote about how I am using a different tool for git signing and verification. Next, I replaced my pass usage. I have a small patch to use stateless OpenPGP command line interface (SOP). It...
View ArticleZato Blog: Modern REST API Tutorial in Python
Modern REST API Tutorial in Python 2025-02-12, by Dariusz Suchojad Great APIs don't win theoretical arguments - they just prefer to work reliably and to make developers' lives easier.Here's a tutorial...
View ArticleReal Python: Quiz: Python Keywords: An Introduction
In this quiz, you’ll test your understanding of Python Keywords.Python keywords are reserved words with specific functions and restrictions in the language. These keywords are always available in...
View ArticleEuroPython Society: Changes in the Grants Programme for 2025
TL;DR:We are making small changes to the Grant ProgrammeWe are increasing transparency and reducing ambiguity in the guidelines.We would like to support more events with our limited budgetWe’ve...
View ArticlePython Morsels: Avoid over-commenting in Python
When do you need a comment in Python and when should you consider an alternative to commenting?Table of contentsDocumenting instead of commentingNon-obvious variables and valuesUnnamed code...
View ArticleReal Python: Python Keywords: An Introduction
Python keywords are reserved words with specific functions and restrictions in the language. Currently, Python has thirty-five keywords and four soft keywords. These keywords are always available in...
View ArticleEuroPython Society: Board Report for January 2025
The top priority for the board in January was finishing the hiring of our event manager. We’re super excited to introduce Anežka Müller! Anežka is a freelance event manager and a longtime member of the...
View ArticleEuroPython: EuroPython February 2025 Newsletter
Hey ya 👋 Hope you&aposre all having a fantastic February. We sure have been busy and got some exciting updates for you as we gear up for EuroPython 2025, which is taking place once again in the...
View ArticleKay Hayen: Nuitka Release 2.6
This is to inform you about the new stable release of Nuitka. It is the extremely compatible Python compiler, “download now”.This release has all-around improvements, with a lot effort spent on bug...
View ArticlePeter Bengtsson: get in JavaScript is the same as property in Python
Prefix a function, in an object or class, with `get` and then that acts as a function call without brackets. Just like Python's `property` decorator.
View ArticleBojan Mihelac: Prefixed Parameters for Django querystring tag
An overview of Django 5.1's new querystring tag and how to add support for prefixed parameters.
View ArticleGiampaolo Rodola: psutil: drop Python 2.7 support
About dropping Python 2.7 support, 3 years ago I stated:Not a chance, for many years to come. [Python 2.7] currently represents 7-10% of total downloads, meaning around 70k / 100k downloads per...
View ArticleDaniel Roy Greenfeld: Building a playing card deck
Today is Valentine's Day. That makes it the perfect day to write a blog post about showing how to not just build a deck of cards, but show off cards from the heart suite.
View ArticleReal Python: The Real Python Podcast – Episode #239: Behavior-Driven vs...
What is behavior-driven development, and how does it work alongside test-driven development? How do you communicate requirements between teams in an organization? Christopher Trudeau is back on the...
View ArticleHugo van Kemenade: Improving licence metadata
What? #PEP 639 defines a spec on how to document licences used in Python projects.Instead of using a Trove classifier such as “License :: OSI Approved :: BSD License”, which is imprecise (for example,...
View ArticleEli Bendersky: Decorator JITs - Python as a DSL
Spend enough time looking at Python programs and packages for machine learning, and you'll notice that the "JIT decorator" pattern is pretty popular. For example, this JAX...
View ArticleDjango Weblog: DjangoCongress JP 2025 Announcement and Live Streaming!
DjangoCongress JP 2025, to be held on Saturday, February 22, 2025 at 10 am (Japan Standard Time), will be broadcast live!It will be streamed on the following YouTube Live channels:DjangoCongress JP...
View ArticleKay Hayen: Nuitka this week #16
Hey Nuitka users! This started out as an idea of a weekly update, but that hasn’t happened, and so we will switch it over to just writing up when something interesting happens and then push it out...
View ArticleReal Python: Python News Roundup: February 2025
The new year has brought a flurry of activity to the Python community. New bugfix releases of Python 3.12 and 3.13 show that the developers seemingly never sleep. A new type of interpreter is slated...
View ArticleQuansight Labs Blog: Mastering DuckDB when you're used to pandas or Polars
It's not as scary as you think
View ArticlePython Bytes: #420 90% Done in 50% of the Available Time
<strong>Topics covered in this episode:</strong><br> <ul> <li><strong><a href="https://peps.python.org/pep-0772/?featured_on=pythonbytes">PEP 772 – Packaging...
View ArticlePython Software Foundation: Where is the PSF? 2025 Edition
Where to Find the PSF OnlineOne of the main ways we reach people for news and information about the PSF and Python is on social media. There’s been a lot of uncertainty around X as well as some other...
View ArticlePyCharm: Which Is the Best Python Web Framework: Django, Flask, or FastAPI?
Search for Python web frameworks, and three names will consistently come up: Django, Flask, and FastAPI. Our latest Python Developer Survey Results confirm that these three frameworks remain...
View ArticleReal Python: Concatenating Strings in Python Efficiently
Python string concatenation is a fundamental operation that combines multiple strings into a single string. In Python, you can concatenate strings using the + operator or append them with +=. For more...
View Article