Cloudflare Docs
Workers
Edit this page on GitHub
Set theme to dark (⇧+D)

How Python Workers Work

Workers written in Python are executed by Pyodide. Pyodide is a port of CPython (the reference implementation of Python — commonly referred to as just “Python”) to WebAssembly.

When you write a Python Worker, your code is interpreted directly by Pyodide, within a V8 isolate. Refer to How Workers works to learn more.

​​ Local Development Lifecycle

index.py
from js import Response
async def on_fetch(request, env):
return Response.new("Hello world!")

…with a wrangler.toml file that points to a .py file:

wrangler.toml
name = "hello-world-python-worker"
main = "src/entry.py"
compatibility_date = "2024-04-01"

When you run npx wrangler@latest dev in local dev, the Workers runtime will:

  1. Determine which version of Pyodide is required, based on your compatibility date
  2. Create a new v8 isolate for your Worker, and automatically inject Pyodide
  3. Serve your Python code using Pyodide

There no extra toolchain or precompilation steps needed. The Python execution environment is provided directly by the Workers runtime, mirroring how Workers written in JavaScript work.

Refer to the Python examples to learn how to use Python within Workers.

​​ Deployment Lifecycle

To reduce cold start times, when you deploy a Python Worker, Cloudflare performs as much of the expensive work as possible upfront, at deploy time. When you run npx wrangler@latest deploy, the following happens:

  1. Wrangler uploads your Python code and your requirements.txt file to the Workers API.
  2. Cloudflare sends your Python code, and your requirements.txt file to the Workers runtime to be validated.
  3. Cloudflare creates a new v8 isolate for your Worker, and automatically injects Pyodide plus any packages you’ve specified in your requirements.txt file.
  4. Cloudflare scans the Worker’s code for import statements, execute them, and then take a snapshot of the Worker’s WebAssembly linear memory. Effectively, we perform the expensive work of importing packages at deploy time, rather than at runtime.
  5. Cloudflare deploys this snapshot alongside your Worker’s Python code to the Cloudflare network.

When a request comes in to your Worker, we load this snapshot and use it to bootstrap your Worker in an isolate, avoiding expensive initialization time:

Diagram of how Python Workers are deployed to Cloudflare

Refer to the blog post introducing Python Workers for more detail about performance optimizations and how the Workers runtime will reduce cold starts for Python Workers.

​​ Pyodide and Python versions

A new version of Python is released every year in August, and a new version of Pyodide is released six (6) months later. When this new version of Pyodide is published, we will add it to Workers by gating it behind a Compatibility Flag, which is only enabled after a specified Compatibility Date. This lets us continually provide updates, without risk of breaking changes, extending the commitment we’ve made for JavaScript to Python.

Each Python release has a five (5) year support window. Once this support window has passed for a given version of Python, security patches are no longer applied, making this version unsafe to rely on. To mitigate this risk, while still trying to hold as true as possible to our commitment of stability and long-term support, after five years any Python Worker still on a Python release that is outside of the support window will be automatically moved forward to the next oldest Python release. Python is a mature and stable language, so we expect that in most cases, your Python Worker will continue running without issue. But we recommend updating the compatibility date of your Worker regularly, to stay within the support window.