The Python Coding Stack: The Chores Rota (#3 in The `itertools` Series â˘...
"It's your turn to take the bins out.""No way, I washed up the dishes today, and vacuumed the rugs yesterday.""ButâŚ"And on and on it went. Yteria and her flatmate, Silvia, had these arguments every...
View ArticlePyCon: Welcoming 8 Companies to Startup Row at PyCon US 2025
PyCon US gives the community a chance to come together and learn about whatâs new and interesting about the Python language and the seemingly infinite variety of problems that can be solved with a few...
View ArticlePython GUIs: Tkinter Widgets â A walkthrough of Tkinter's basic widgets
In Tkinter (and most GUI libraries), widget is the name given to a component of the GUI that the user can interact with. User interfaces are made up of multiple widgets arranged within the window to...
View ArticleZato Blog: Microsoft Dataverse with Python and Zato Services
Microsoft Dataverse with Python and Zato Services 2025-05-19, by Dariusz Suchojad OverviewMicrosoft Dataverse is a cloud-based data storage and management platform, often used with PowerApps and...
View ArticleReal Python: Quiz: How to Group Data Using Polars .group_by()
In this quiz, youâll test your understanding of the techniques covered in How to Group Data Using Polars .group_by().By working through the questions, youâll review your understanding of how to use the...
View ArticleReal Python: How to Group Data Using Polars .group_by()
One of the most common tasks youâll encounter when analyzing Polars data is the need to summarize it. You can use the Polars .group_by() method to create groupings based on column values. A related...
View ArticlePython Bytes: #432 How To Fix Your Computer
<strong>Topics covered in this episode:</strong><br> <ul> <li><strong><a...
View ArticleTalk Python to Me: #506: ty: Astral's New Type Checker (Formerly Red-Knot)
The folks over at Astral have made some big-time impacts in the Python space with uv and ruff. They are back with another amazing project named ty. You may have known it as Red-Knot. But it's coming up...
View ArticleReal Python: First Steps With LangChain
Youâve likely interacted with large language models (LLMs), like the ones behind OpenAIâs ChatGPT, and experienced their remarkable ability to answer questions, summarize documents, write code, and...
View ArticleAri Lamstein: Course Review: Build AI Agents with Python
I was slow to jump on the LLM bandwagon.In some ways this is surprising. Although it was a while ago, I did take several AI courses in grad school. So I am probably in a good position to dive into new...
View ArticlePyCoderâs Weekly: Issue #682: pylock.toml, NumPy, t-strings, and More (May...
#682 â MAY 20, 2025View in Browser ÂťGoing Beyond requirements.txt With pylock.toml What is the best way to record the Python dependencies for the reproducibility of your projects? What advantages will...
View ArticleEuroPython Society: EuroPython Society at PyCon US 2025
This year, for the first time, the EuroPython Society had a booth at PyCon US. đIt was a great chance to meet people from other Python communities, catch up with old friends, and make some new ones. At...
View ArticleStĂŠphane Wirtel: From script to version 1.0.0 â 12 years later
đ§ľ From script to version 1.0.0 â 12 years later In 2013, I wrote a tiny Python script to help with local SMTP debugging during development. It used smtpd, docopt, and had no ambition other than making...
View ArticleReal Python: Quiz: Nested Loops in Python
In this quiz, youâll test your understanding of Nested Loops in Python.Nested loops in Python involve placing one loop inside another, enabling iteration over multiple sequences or repeated actions....
View ArticleReal Python: Nested Loops in Python
Nested loops in Python allow you to place one loop inside another, enabling you to perform repeated actions over multiple sequences. Understanding nested loops helps you write more efficient code,...
View ArticleEuroPython Society: Board Report for April 2025
In April, our top priority was to kick off discussions about the 2026 venue. We successfully launched the Call for Venues and are now actively working on choosing a new location for next year.We also...
View ArticleEuroPython: AI Keynote Reveal, Python Documentary Premiere & Last Chance...
Hello, Pythonistas! đTickets are still available but combined and tutorial tickets are almost sold out! You can get your tickets at europython.eu/ticketsđŁ Meet our Keynoters We are pleased to announce...
View ArticleDjango Weblog: Why, in 2025, do we still need a 3rd party app to write a REST...
The question was asked to the president of the DSF this year at FOSDEM, after his talk. And it is clearly a legitimate one!But⌠is it True? Do we actually need a 3rd party app to write an API with...
View ArticlePythonâSpeed: Loading Pydantic models from JSON without running out of memory
You have a large JSON file, and you want to load the data into Pydantic. Unfortunately, this uses a lot of memory, to the point where large JSON files are very difficult to read. What to do?Assuming...
View ArticleMirek DĹugosz: Understanding Python web deployment
Trying to deploy server-side Python web application may be overwhelming. Many tutorials will gladly tell you how to run it inside gunicorn, and how to put nginx in front of it, but they usually skim...
View Article