Cloudflare Python Workers are now generally available

Simon Willison's Weblog · 2d ago
Products & Tools API & Dev Tools

How-To How to actually use this

What changed: Cloudflare Python Workers are now generally available, meaning Python is a fully supported, stable language on the Cloudflare Developer Platform.

How to use it:

  1. Write your server-side logic in Python.
  2. Deploy it as a Cloudflare Worker, which runs your code compiled to WebAssembly via Pyodide.
  3. Manage and scale the Worker through the Cloudflare dashboard or API like you would any other Worker.

Good for: developers building server-side applications with Python on Cloudflare's edge network.

Cloudflare Python Workers are now generally available After a two year preview, Cloudflare's support for running Python code in their server-side Workers platform is now stable: "Python is now a first-class, fully supported language on the Cloudflare Developer Platform". A neat thing about this is how it works. Cloudflare are running Python compiled to WebAssembly via Pyodide in their V8-based…

Read original article on Simon Willison's Weblog →