Cloudflare Python Workers are now generally available
Source
simonwillison.net
Date
Key takeaways · AI-distilled
Cloudflare's Python Workers reached general availability after a two-year preview, running CPython compiled to WebAssembly via Pyodide inside Cloudflare's V8-based workerd runtime.
The WebAssembly sandboxAn isolated environment where AI-generated code or agent actions run without being able to touch anything real.Full definition → has real limits: both multiprocessing and threading are non-functional for Python code running in Workers.
Local development runs a full simulation of the production stack, including a roughly 123MB workerd binary executing Pyodide-compiled Python in WebAssembly, via a tool called pywrangler (packaged as workers-py on PyPI).
The release is credited to Gyeongjae Choi, Dominik Picheta, and Hood Chatham; two of the three (Choi and Chatham) are core maintainers of the Pyodide project itself.
Terms in this piece · Glossary
sandbox — An isolated environment where AI-generated code or agent actions run without being able to touch anything real.
Why it matters
Python is now a fully supported, stable language on Cloudflare Workers (compiled via Pyodide to WASM), giving developers a new production-ready serverless deployment target with documented limitations.