openai/openai-python: v3.6.0
3.6.0 (2026-08-27) Features api: add compute_units to Responses and Chat Completions usage (#3749) (52421d1) Bug Fixes auth: harden X.509 workload identity integration (#3740) (fc3ad6c) Chores deps-dev: bump @stdy/cli…
Daily edition · Python
TILens turns technical updates into a focused daily brief: official releases, trusted reporting, and practitioner analysis, deduplicated and organized by topic.
3.6.0 (2026-08-27) Features api: add compute_units to Responses and Chat Completions usage (#3749) (52421d1) Bug Fixes auth: harden X.509 workload identity integration (#3740) (fc3ad6c) Chores deps-dev: bump @stdy/cli…
Just a rumour of a bug is enough to find a security exploit these days Anil Madhavapeddy is a professor of computer science at Cambridge and a core maintainer of the OCaml compiler. In this somewhat alarming post he…
v2.13.5 (2026-08-28) What's Changed Fixes Allow reuse of validators when plugins are set by @Viicos in #13535 Fix missing GC traversal on some pydantic-core struct fields by @Viicos in #13624 Fix missing GC traversal in…
pydantic-core release v2.46.3
Currently, Python does not have a nice way of composing functions, and right now you would have to do lambda x:f(g(x)) when with this syntax it could easily be f@g or f&g.I imagine some issues may occur if you have…
Fix homematicip_cloud shutter group resetting slats on close (@mastameista - #172278) Fix TemperatureOffset native min/max unit conversion for Matter thermostats (@lboue - #180172) Add device class to Homewizard signal…
How we stopped reviewing every agent action and started routing human attention where it actually mattered The post Human-in-the-Loop Without Killing Throughput appeared first on Towards Data Science.
A hands-on guide to defining specialist agents and coordinating their work in the Codex CLI The post From One Agent to a Team: Understanding Codex Subagents appeared first on Towards Data Science.
How to run the backend locally with Docker or in the cloud The post Connecting My LangGraph AI Agent to Postgres appeared first on Towards Data Science.
The results from the 2026 Django Developers Survey are now available. This is the fifth annual report conducted from May to July 2026 by the Django Software Foundation in collaboration with JetBrains PyCharm. The full…
Welcome to the highlights from the fifth annual Django Developers Survey, a collaboration between the Django Software Foundation and PyCharm. This year’s report draws on responses from nearly 3,500 Django developers…
Be a better communicator with LLM programming The post Why Claude Code Time Estimates Are Poor appeared first on Towards Data Science.
What are the key characteristics of complex systems, and what are practical patterns for tackling complex coding problems? Christopher Trudeau is back on the show this week with another batch of PyCoder's Weekly…
Check your understanding of building a command line rock paper scissors game in Python, from player input and loops to enums and dictionary rules.
We are investigating a security incident affecting JetBrains Cadence. Cadence is a JetBrains-hosted service that integrates with PyCharm through an optional plugin, and lets you run your projects on cloud compute…
Who are you? Hi, I’m Georgi, an independent entrepreneur, open source community organiser, and leader. I’m also a PSF Fellow and a recipient of the PSF Community Service Award. Although I currently live in Amsterdam, I…
Despite int constructor accepts strings in any base in range(2, 37), currently we can format numbers only in decimal, binary, octal or hexadecimal. (str, repr, bin, oct, hex and format builtins, respectively.)…