#python
8 notes
- Jul 28, 2026
Python's
Ellipsisliteral (...) is a real object (type(...)is<class 'ellipsis'>), not just a placeholder. Beyond type stubs and numpy slicing, NVIDIA's NOOA framework repurposes it as a runtime dispatch marker: methods with...bodies are completed by an LLM at runtime, while methods with real bodies stay deterministic Python. The boundary between "code I control" and "code the model controls" becomes greppable:grep -n '\.\.\.' agent.py. Clever reuse of existing syntax that linters and type checkers already accept. - Jul 24, 2026
django-crawl by Adam Johnson: BFS-crawls your Django site using the test client, no real HTTP overhead. Origin story: diffing CSP headers during a Django 6.0 migration accidentally caught 7 non-CSP bugs in a 100%-coverage project. HTML parsing via Rust (html5ever), follows links/sitemaps/feeds. Works as a management command or a TestCase smoke test that raises
ExceptionGroupon errors. discuss - Jul 11, 2026
Python 3.15 datetime docs now officially recommend
import datetime as dtin a Tip block, to disambiguate the module from thedatetime.datetimeclass. The tip cites Adam Johnson's 2019 post — 6 years from community convention to CPython docs. Fixes both traps:from datetime import datetimeshadows the module, andimport datetimereads ambiguously asdatetime.datetime.now(). via - Apr 2, 2026
Django Modern REST seems to be an emerging REST API library with focus on performance, scalability and pluggable serializers. Supporting msgpack, CBV and less of sync_to_async. Might evaluate it against the my current preferred
django-ninja. gemini - Feb 13, 2026
zoocache is a sematic dependency based cache manager, that support in-memory, LMDB or redis backends. Integration with Django looks interesting.
- Jan 12, 2026
The free-threaded version of python can be added to uv and github actions with
tsuffix. e.g.3.14tand3.13tsource - Dec 27, 2025
how uv got so fast. UV performance is because of design decisions while rust contributes to micro optimizations.
- Dec 24, 2025
"LangGraph is an orchestration framework for building stateful multi-agent applications using LLMs. It provides low-level primitives such as nodes and edges, along with built-in features that give developers granular control over agent workflows, memory management and state persistence. This means developers can start with a simple pre-built graph and scale to complex, evolving agent architectures. With support for streaming, advanced context management and resilience patterns like model fallbacks and tool error handling, LangGraph enables you to build robust, production-grade agentic applications. Its graph-based approach ensures predictable, customizable workflows and simplifies debugging and scaling."