Everyday Superpowers: Finding the root of a project with pathlib
Link: https://everydaysuperpowers.dev/articles/finding-the-root-of-a-project-with-pathlib/
Every now and then I'm writing code deep in some Python project, and I realize that it would be nice to generate a file at the root of a project.The following is the way I'm currently finding the root
Link: https://everydaysuperpowers.dev/articles/finding-the-root-of-a-project-with-pathlib/
Every now and then I'm writing code deep in some Python project, and I realize that it would be nice to generate a file at the root of a project.The following is the way I'm currently finding the root
everydaysuperpowers.dev
Finding the root of a project with pathlib
Python Software Foundation: 2025 PSF Board Election Schedule Change
Link: https://pyfound.blogspot.com/2025/04/2025-psf-board-election-schedule-change.html
Starting this year, the PSF Board Election will be held a couple of months later in the year than in years prior. The nomination period through the end of the vote will run around the August to Septem
Link: https://pyfound.blogspot.com/2025/04/2025-psf-board-election-schedule-change.html
Starting this year, the PSF Board Election will be held a couple of months later in the year than in years prior. The nomination period through the end of the vote will run around the August to Septem
Python Software Foundation Blog
2025 PSF Board Election Schedule Change
Starting this year, the PSF Board Election will be held a couple of months later in the year than in years prior. The nomination period thro...
Everyday Superpowers: Supercharge Your Enums: Cleaner Code with Hidden Features
Link: https://everydaysuperpowers.dev/articles/supercharge-your-enums-cleaner-code-with-hidden-features/
I see a lot of articles suggesting you use enums by mostly restating the Python documentation. Unfortunately, I feel this leaves readers without crutial practical advice, which I'd like to pass on her
Link: https://everydaysuperpowers.dev/articles/supercharge-your-enums-cleaner-code-with-hidden-features/
I see a lot of articles suggesting you use enums by mostly restating the Python documentation. Unfortunately, I feel this leaves readers without crutial practical advice, which I'd like to pass on her
everydaysuperpowers.dev
Supercharge Your Enums: Cleaner Code with Hidden Features
Python GUIs: Building a Currency Converter Application using Tkinter — Convert between currencies with ease
Link: https://www.pythonguis.com/examples/currency-converter-tkinter/
In this tutorial, you'll create a currency converter application with Python and Tkinter. The app will allow the users to select the source currency, choose the target currency, and input the amount t
Link: https://www.pythonguis.com/examples/currency-converter-tkinter/
In this tutorial, you'll create a currency converter application with Python and Tkinter. The app will allow the users to select the source currency, choose the target currency, and input the amount t
Python GUIs
Building a Currency Converter Application using Tkinter
In this tutorial, you'll code a currency converter application using Python and Tkinter. To get exchange rate data, you'll use an external API. In this tutorial, you'll create a currency converter application with Python and Tkinter.
Everyday Superpowers: Event Sourcing: Reactivity Without the React Overhead
Link: https://everydaysuperpowers.dev/articles/event-sourcing-reactivity-without-the-react-overhead/
This is the second 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 couplin
Link: https://everydaysuperpowers.dev/articles/event-sourcing-reactivity-without-the-react-overhead/
This is the second 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 couplin
everydaysuperpowers.dev
Event Sourcing: Reactivity Without the React Overhead
Awesome Python Applications: aider
Link: https://github.com/paul-gauthier/aider
aider: Terminal-based AI pair programming assistant.
Links:
Repo
Home
Link: https://github.com/paul-gauthier/aider
aider: Terminal-based AI pair programming assistant.
Links:
Repo
Home
GitHub
GitHub - Aider-AI/aider: aider is AI pair programming in your terminal
aider is AI pair programming in your terminal. Contribute to Aider-AI/aider development by creating an account on GitHub.
❤1
Awesome Python Applications: Beaver Habits
Link: https://github.com/daya0576/beaverhabits
Beaver Habits: Self-hosted habit tracking app without "Goals".
Links:
Repo
Home
Demo
Fund
Link: https://github.com/daya0576/beaverhabits
Beaver Habits: Self-hosted habit tracking app without "Goals".
Links:
Repo
Home
Demo
Fund
GitHub
GitHub - daya0576/beaverhabits: A self-hosted habit tracking app without "Goals"
A self-hosted habit tracking app without "Goals". Contribute to daya0576/beaverhabits development by creating an account on GitHub.
Awesome Python Applications: DollarDollar Bill Y'all
Link: https://github.com/harung1993/dollardollar
DollarDollar Bill Y'all: Self-hosted money management and expense splitting web service.
Links:
Repo
Demo
Fund
Link: https://github.com/harung1993/dollardollar
DollarDollar Bill Y'all: Self-hosted money management and expense splitting web service.
Links:
Repo
Demo
Fund
GitHub
GitHub - harung1993/dollardollar: Just an Opensourced locally hosted Money Management and Expense Splitting Service
Just an Opensourced locally hosted Money Management and Expense Splitting Service - harung1993/dollardollar
Test and Code: The role of AI in software testing - Anthony Shaw
Link: https://testandcode.com/episodes/ai-role-software-testing
AI is helping people write code. Tests are one of those things that some people don't like to write. Can AI play a role in creating automated software tests? Well, yes. But it's a nuanced yes. An
Link: https://testandcode.com/episodes/ai-role-software-testing
AI is helping people write code. Tests are one of those things that some people don't like to write. Can AI play a role in creating automated software tests? Well, yes. But it's a nuanced yes. An
Test & Code
Test & Code | The role of AI in software testing - Anthony Shaw
AI is helping people write code. Tests are one of those things that some people don't like to write. Can AI play a role in creating automated software tests? Well, yes. But it's a nuanced yes. ...
Django Weblog: New-features github repo and project
Link: https://www.djangoproject.com/weblog/2025/apr/26/new-features-github-repo-and-project/
New Feature Request/Proposal Process with GitHub Repository
Django is experimenting with a new GitHub repository specifically designed to manage feature ideas and their progression. This is a signific
Link: https://www.djangoproject.com/weblog/2025/apr/26/new-features-github-repo-and-project/
New Feature Request/Proposal Process with GitHub Repository
Django is experimenting with a new GitHub repository specifically designed to manage feature ideas and their progression. This is a signific
Django Project
New-features github repo and project
Posted by Emma Delescolle on April 26, 2025
Daniel Roy Greenfeld: TIL: Pipe operator for merging dictionaries
Link: https://daniel.feldroy.com/posts/til-2025-04-Pipe-operator-for-merging-dictionaries
In Python 3.9 and later, the pipe operator | can be used to merge dictionaries.
Link: https://daniel.feldroy.com/posts/til-2025-04-Pipe-operator-for-merging-dictionaries
In Python 3.9 and later, the pipe operator | can be used to merge dictionaries.
https://daniel.feldroy.com
TIL: Pipe operator for merging dictionaries
In Python 3.9 and later, the pipe operator | can be used to merge dictionaries.
Python GUIs: Kivy's Complex Widgets — Learn How to Use Kivy's Complex UX Widgets in Your Apps
Link: https://www.pythonguis.com/tutorials/kivy-complex-ui-widgets/
Kivy is a powerful framework for developing multi-touch GUI applications using Python. It provides a set of rich built-in widgets which you can use to build complex GUI applications.
In a previous tut
Link: https://www.pythonguis.com/tutorials/kivy-complex-ui-widgets/
Kivy is a powerful framework for developing multi-touch GUI applications using Python. It provides a set of rich built-in widgets which you can use to build complex GUI applications.
In a previous tut
Python GUIs
Kivy Complex UX Widgets: A Comprehensive Guide
Kivy is a powerful framework for developing multi-touch applications in Python. In this tutorial, you'll learn the basics of complex UX widgets in Kivy and how to use them in your apps. Kivy is a powerful framework for developing multi-touch GUI applications…
Real Python: Quiz: Managing Python Projects With uv: An All-in-One Solution
Link: https://realpython.com/quizzes/python-uv/
By working through this quiz, you’ll revisit how Python’s uv integrates multiple functionalities into one tool, offering a comprehensive solution for managing Python projects.
You can use it for fast
Link: https://realpython.com/quizzes/python-uv/
By working through this quiz, you’ll revisit how Python’s uv integrates multiple functionalities into one tool, offering a comprehensive solution for managing Python projects.
You can use it for fast
Realpython
Managing Python Projects With uv: An All-in-One Solution Quiz – Real Python
In this quiz, you'll test your understanding of the uv tool, a high-speed package and project manager for Python.
Real Python: Managing Python Projects With uv: An All-in-One Solution
Link: https://realpython.com/python-uv/
The uv tool is a high-speed package and project manager for Python. It’s written in Rust and designed to streamline your workflow. It offers fast dependency installation and integrates various functio
Link: https://realpython.com/python-uv/
The uv tool is a high-speed package and project manager for Python. It’s written in Rust and designed to streamline your workflow. It offers fast dependency installation and integrates various functio
Realpython
Managing Python Projects With uv: An All-in-One Solution – Real Python
In this tutorial, you'll learn how to create and manage your Python projects using uv, an extremely fast Python package and project manager written in Rust.
Mike Driscoll: Creating TUI Applications with Textual and Python Kickstarter Launched
Link: https://www.blog.pythonlibrary.org/2025/04/28/creating-tui-applications-with-textual-and-python-kickstarter-launched/
Text-based user interfaces (TUIs) are making a BIG comeback. Many developers of today need to easy-to-use applications to configure and run jobs on headless servers. You can make your own life and the
Link: https://www.blog.pythonlibrary.org/2025/04/28/creating-tui-applications-with-textual-and-python-kickstarter-launched/
Text-based user interfaces (TUIs) are making a BIG comeback. Many developers of today need to easy-to-use applications to configure and run jobs on headless servers. You can make your own life and the
Mouse Vs Python
Creating TUI Applications with Textual and Python Kickstarter Launched - Mouse Vs Python
Text-based user interfaces (TUIs) are making a BIG comeback. Many developers of today need to easy-to-use applications to configure and run jobs on
Talk Python to Me: #503: The PyArrow Revolution
Link: https://talkpython.fm/episodes/show/503/the-pyarrow-revolution
Pandas is at a the core of virtually all data science done in Python, that is virtually all data science. Since it's beginning, Pandas has been based upon numpy. But changes are afoot to update those
Link: https://talkpython.fm/episodes/show/503/the-pyarrow-revolution
Pandas is at a the core of virtually all data science done in Python, that is virtually all data science. Since it's beginning, Pandas has been based upon numpy. But changes are afoot to update those
talkpython.fm
The PyArrow Revolution
Pandas is at a the core of virtually all data science done in Python, that is virtually all data science. Since it's beginning, Pandas has been based upon numpy. But changes are afoot to update those internals and you can now optionally use PyArrow. PyArrow…
Python Bytes: #430 Or you go to jail
Link: https://pythonbytes.fm/episodes/show/430/or-you-go-to-jail
<strong>Topics covered in this episode:</strong><br>
<ul>
<li><strong><a href="https://ichard26.github.io/blog/2025/04/whats-new-in-pip-25.1/?featured_on=pythonbytes">pip 25.1 has dependency groups,
Link: https://pythonbytes.fm/episodes/show/430/or-you-go-to-jail
<strong>Topics covered in this episode:</strong><br>
<ul>
<li><strong><a href="https://ichard26.github.io/blog/2025/04/whats-new-in-pip-25.1/?featured_on=pythonbytes">pip 25.1 has dependency groups,
pythonbytes.fm
Or you go to jail
News and announcements from the Python community for the week of Apr 28th, 2025
Tryton News: Tryton Release 7.6
Link: https://discuss.tryton.org/t/tryton-release-7-6/8532
We are proud to announce the 7.6 release of Tryton.
This release provides many bug fixes, performance improvements and some fine tuning.
You can give it a try on the demo server, use the docker ima
Link: https://discuss.tryton.org/t/tryton-release-7-6/8532
We are proud to announce the 7.6 release of Tryton.
This release provides many bug fixes, performance improvements and some fine tuning.
You can give it a try on the demo server, use the docker ima
Tryton Discussion
Tryton Release 7.6
We are proud to announce the 7.6 release of Tryton. This release provides many bug fixes, performance improvements and some fine tuning. You can give it a try on the demo server, use the docker image or download it here. As usual upgrading from previous…
PyBites: From Backend to Frontend: Connecting FastAPI and Streamlit
Link: https://pybit.es/articles/from-backend-to-frontend-connecting-fastapi-and-streamlit/
In my previous Pybites article, I showed how I built and deployed a book tracking API using FastAPI, Docker, and Fly.io. That project taught me a lot about backend development, containers, and deployi
Link: https://pybit.es/articles/from-backend-to-frontend-connecting-fastapi-and-streamlit/
In my previous Pybites article, I showed how I built and deployed a book tracking API using FastAPI, Docker, and Fly.io. That project taught me a lot about backend development, containers, and deployi
Pybites
From Backend To Frontend: Connecting FastAPI And Streamlit - Pybites
So, I decided to build a frontend. My goal? A fast, Python-based UI with minimal hassle. That’s when I turned to Streamlit.
Real Python: Quiz: How to Manage Python Projects With pyproject.toml
Link: https://realpython.com/quizzes/python-pyproject-toml/
In this quiz, you’ll test your understanding of the pyproject.toml file.
This file is a key component for defining a Python project’s build system, including its requirements and build backend. With a
Link: https://realpython.com/quizzes/python-pyproject-toml/
In this quiz, you’ll test your understanding of the pyproject.toml file.
This file is a key component for defining a Python project’s build system, including its requirements and build backend. With a
Realpython
How to Manage Python Projects With pyproject.toml Quiz – Real Python
In this quiz, you'll test your understanding of Python's pyproject.toml file, which simplifies Python project configuration by unifying package setup, managing dependencies, and streamlining builds.