Skip to content
TILens What matters today in tech v0.0.9
Theme

Topic - Edition

Python

17 items on 28 Aug 2026
Python GitHub AI

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…

Source: OpenAI Python Releases openai-sdks[bot]
Python GitHub FastAPI

pydantic/pydantic: v2.13.5

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…

Source: Pydantic Releases Viicos
Python

Allow function composition using an operator

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…

Source: Python Ideas PlaceReporter99
Python GitHub Hardware

home-assistant/core: 2026.9.0b2

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…

Source: Home Assistant Core Releases frenck
AI Research AI Python

Human-in-the-Loop Without Killing Throughput

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.

Source: Towards Data Science Priyansh Bhardwaj
AI Research AI Python

From One Agent to a Team: Understanding Codex Subagents

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.

Source: Towards Data Science Shuai Guo
AI Research AI Python

Connecting My LangGraph AI Agent to Postgres

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.

Source: Towards Data Science Soner Yıldırım
Python

Django Weblog: Django Developers Survey 2026 results

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…

Source: Planet Python
Python

PyCharm: The State of Django 2026: Boring is so back

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…

Source: Planet Python
AI Research AI Python

Why Claude Code Time Estimates Are Poor

Be a better communicator with LLM programming The post Why Claude Code Time Estimates Are Poor appeared first on Towards Data Science.

Source: Towards Data Science Eivind Kjosbakken
Python

PyCharm: Security Incident Affecting JetBrains Cadence

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…

Source: Planet Python
Python

Expose possibility to format ints in all supported bases?

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.)…

Source: Python Ideas Sergey B Kirpichev