What changed
Cloudflare's September 16, 2026 Developer Platform changelog adds Hyperdrive support for Python Workers. Python Workers can connect to PostgreSQL and MySQL through a Hyperdrive binding using Python database drivers over Workers' TCP socket support. Cloudflare's dedicated documentation marks the integration beta and requires compatibility date 2026-09-08 or later.
Why it matters
Cloudflare has been expanding Python Workers from basic runtime support into a more complete application platform. Direct Hyperdrive access removes an architectural seam for Python applications that need remote relational databases: they can use Cloudflare's pooled database connection layer without inserting a JavaScript Worker or separate service solely for SQL connectivity. That matters for Django/Flask-style edge applications and other Python services moving onto Workers, although the beta label means production adoption still needs testing.
Python Workers can now use Hyperdrive directly
The new integration exposes Hyperdrive-backed PostgreSQL and MySQL connectivity to Python Worker code. Hyperdrive remains the connection-management layer between globally distributed Workers and regional databases.
It uses normal Python database drivers over TCP
Cloudflare says Python Workers use TCP socket support for database connections. For PostgreSQL it recommends tested drivers including asyncpg, pg8000 and psycopg; other TCP-compatible drivers may work but are not necessarily verified by Cloudflare.
The integration is beta and compatibility-date gated
Cloudflare's documentation explicitly labels Hyperdrive support in Python Workers beta. Applications must use compatibility date 2026-09-08 or later, so existing Python Workers do not silently acquire the new behavior.