PythonHub
2.49K subscribers
2.35K photos
49.9K links
News & links about Python programming.
https://pythonhub.dev/
Download Telegram
nao

nao is a framework to build and deploy analytics agent. Create the context of your analytics agent with nao-core cli: data, metadata, modeling, rules, etc. Deploy a UI for anyone to chat with your agent and run analytics on your data.

https://github.com/getnao/nao
Coodie: A 4-year-old idea brought to life by AI (and some coffee)

After shelving the idea for four years, the author used AI to rapidly bootstrap Coodie, a Pydantic v2 based ODM for Cassandra and ScyllaDB inspired by Beanie for MongoDB. The result is a fully working library with declarative schemas, automatic table management, sync and async APIs, and chainable queries, built largely with AI assistance in a fraction of the time.

https://fruch.github.io/python/2026/02/24/coodie-ai-pydantic-odm
The bug fix paradox: why AI agents keep breaking working code

The article explains that when you ask an AI coding agent to fix a bug, it often makes unnecessary changes to working code because it does not explicitly know which behavior should stay the same and which should change, leading to regressions. It then proposes a property-aware code evolution approach that defines a clear bug condition and corresponding preservation properties so the fix ...

https://kiro.dev/blog/bug-fix-paradox/
Guido van Rossum Interviews Thomas Wouters (Python Core Dev)

https://gvanrossum.github.io/interviews/Thomas.html
Stario

Stario is a Python web framework for real-time hypermedia. While most frameworks treat HTTP as request → response, Stario treats connections as ongoing conversations - open an SSE stream, push DOM patches, sync reactive signals.

https://github.com/bobowski/stario
Python Essentials for AI Agents – Tutorial

This Python course will help you master the technical stack behind autonomous intelligence. This course is designed to take you from the core syntax of Python through the complexities of data handling and API integration, culminating in the deployment of sophisticated Large Language Models. You will learn to write code and to architect systems that can reason, use tools, and solve real-w...

https://www.youtube.com/watch?v=UsfpzxZNsPo
OAUTH on client-side with Python

An overview of OAUTH in non-web apps and the general data-flow of an OAUTH Client.

https://jakabszilard.work/posts/oauth-in-python
Rendering 18,000 videos in real-time with Python

Learn how the author used game engine tech to solve a video streaming problem.

https://madebymohammed.com/pysaic
🔥1
CLI subcommands with lazy imports

The post explains that Python 3.15’s new lazy imports feature is great for CLI tools, but naïve argparse subcommand patterns accidentally force all lazy imports to execute early, negating the benefit. It then shows two simple patterns that preserve laziness for subcommands: dispatching with a match statement, or wrapping lazy-imported callables in lambdas so they are only reified when th...

https://snarky.ca/subcommands-with-lazy-imports/