EuroPython Society: EPS Board 2025-2026
Link: https://www.europython-society.org/eps-board-2025-2026/
We’re happy to announce our new board for the 2025-2026 term:Artur Czepiel (Chair)Mia Bajić (Vice Chair)Anders HammarquistAngel RamboiAris NivorlisEge AkmanYuliia BarabashYou can read more about them
Link: https://www.europython-society.org/eps-board-2025-2026/
We’re happy to announce our new board for the 2025-2026 term:Artur Czepiel (Chair)Mia Bajić (Vice Chair)Anders HammarquistAngel RamboiAris NivorlisEge AkmanYuliia BarabashYou can read more about them
EuroPython Society
EPS Board 2025-2026
We’re happy to announce our new board for the 2025-2026 term: Artur Czepiel (Chair)Mia Bajić (Vice Chair)Anders HammarquistAngel RamboiAris NivorlisEge AkmanYuliia BarabashYou can read more about them in their nomination post at https://www.europython-society.org/list…
"Michael Kennedy's Thoughts on Technology": Python Supply Chain Security Made Easy
Link: https://mkennedy.codes/posts/python-supply-chain-security-made-easy/
Maybe you’ve heard that hackers have been trying to take advantage of open source software to inject code into your machine, and worst case scenario, even the consumers of your libraries or your appli
Link: https://mkennedy.codes/posts/python-supply-chain-security-made-easy/
Maybe you’ve heard that hackers have been trying to take advantage of open source software to inject code into your machine, and worst case scenario, even the consumers of your libraries or your appli
Michael Kennedy's Thoughts on Technology
Python Supply Chain Security Made Easy
Wire pip-audit into your CI and unit tests to automatically block known vulnerable dependencies.
Armin Ronacher: Advent of Slop: A Guest Post by Claude
Link: https://lucumr.pocoo.org/2025/12/23/advent-of-slop/
This is a guest post. Armin asked me to write about solving Advent of Code
2025 and I am happy to oblige. I am Claude, the AI that powers Claude Code,
and this is my voice. Armin has asked me, to s
Link: https://lucumr.pocoo.org/2025/12/23/advent-of-slop/
This is a guest post. Armin asked me to write about solving Advent of Code
2025 and I am happy to oblige. I am Claude, the AI that powers Claude Code,
and this is my voice. Armin has asked me, to s
Armin Ronacher's Thoughts and Writings
Advent of Slop: A Guest Post by Claude
A guest post by Claude, reflecting on solving Advent of Code 2025 as an autonomous agent.
Real Python: Quiz: Recursion in Python: An Introduction
Link: https://realpython.com/quizzes/python-recursion/
In this quiz, you’ll test your understanding of
Recursion in Python.
By working through this quiz, you’ll revisit what recursion is, how base and recursive cases work, when recursion is a good fit for
Link: https://realpython.com/quizzes/python-recursion/
In this quiz, you’ll test your understanding of
Recursion in Python.
By working through this quiz, you’ll revisit what recursion is, how base and recursive cases work, when recursion is a good fit for
Realpython
Recursion in Python: An Introduction Quiz – Real Python
Test your understanding of recursion in Python, including base cases, recursive structure, performance considerations, and common use cases.
Hugo van Kemenade: And now for something completely different
Link: https://hugovk.dev/blog/2025/and-now/
Starting in 2019, Python 3.8 and
3.9 release manager Łukasz Langa
added a new section to the release notes called “And now for something completely
different” with a sketch transcript from Monty Pytho
Link: https://hugovk.dev/blog/2025/and-now/
Starting in 2019, Python 3.8 and
3.9 release manager Łukasz Langa
added a new section to the release notes called “And now for something completely
different” with a sketch transcript from Monty Pytho
Hugo van Kemenade
And now for something completely different
Real Python: Reading User Input From the Keyboard With Python
Link: https://realpython.com/courses/reading-user-input-from-keyboard/
You may often want to make your Python programs more interactive by responding dynamically to input from the user. Learning how to read user input from the keyboard unlocks exciting possibilities and
Link: https://realpython.com/courses/reading-user-input-from-keyboard/
You may often want to make your Python programs more interactive by responding dynamically to input from the user. Learning how to read user input from the keyboard unlocks exciting possibilities and
Realpython
Reading User Input From the Keyboard With Python – Real Python
Master taking user input in Python to build interactive terminal apps with clear prompts, solid error handling, and smooth multi-step flows.
Reuven Lerner: Reuven’s 2025 in review
Link: https://lerner.co.il/2025/12/23/reuvens-2025-in-review/
Can you believe that 2025 is almost over? It was full of big events for me, and yet it also whizzed past at breakneck speed.
And so, before we start 2026, I want to share a whole bunch of updates on w
Link: https://lerner.co.il/2025/12/23/reuvens-2025-in-review/
Can you believe that 2025 is almost over? It was full of big events for me, and yet it also whizzed past at breakneck speed.
And so, before we start 2026, I want to share a whole bunch of updates on w
Reuven Lerner
Reuven's 2025 in review
Can you believe that 2025 is almost over? It was full of big events for me, and yet it also whizzed past at breakneck speed. And so, before we start 2026, I want to share
PyCoder’s Weekly: Issue #714: Narwhals, Selenium, Testing Conundrum, and More (Dec. 23, 2025)
Link: https://pycoders.com/issues/714
#714 – DECEMBER 23, 2025 View in Browser » Writing DataFrame-Agnostic Python Code With Narwhals If you’re a Python library developer looking to write DataFrame-agnostic code, this tutorial will
Link: https://pycoders.com/issues/714
#714 – DECEMBER 23, 2025 View in Browser » Writing DataFrame-Agnostic Python Code With Narwhals If you’re a Python library developer looking to write DataFrame-agnostic code, this tutorial will
Pycoders
PyCoder’s Weekly | Issue #714
Narwhals, Selenium, Testing Conundrum, and More
Giampaolo Rodola: C heap introspection in psutil
Link: https://gmpy.dev/blog/2025/psutil-heap-introspection-apis
Memory leaks in Python are often straightforward to diagnose. Just look at RSS,
track Python object counts, follow reference graphs. But leaks inside C
extension modules are another story. Traditional
Link: https://gmpy.dev/blog/2025/psutil-heap-introspection-apis
Memory leaks in Python are often straightforward to diagnose. Just look at RSS,
track Python object counts, follow reference graphs. But leaks inside C
extension modules are another story. Traditional