Pywrangler , the CLI tool for managing Python Workers and packages, now supports Windows, allowing you to develop and deploy Python Workers from Windows environments. Previously, Pywrangler was only available on macOS and Linux. You can install and use Pywrangler on Windows the same way you would on other platforms....
Workers - Better Windows support for Python Workers
Cloudflare Developer Platform Changelog · 2026-02-25
Related items
Workers - Cron triggers are now supported in Python Workers
You can now create Python Workers which are executed via a cron trigger. This is similar to how it's done in JavaScript Workers, simply define a scheduled event listener in your Worker: from workers import handler @ handler async def onscheduled ( event , env , ctx ): print ( "cron processed" ) Define a cron trigger...
Workers, Durable Objects - Durable Objects are now supported in Python Workers
You can now create Durable Objects using Python Workers . A Durable Object is a special kind of Cloudflare Worker which uniquely combines compute with storage, enabling stateful long-running applications which run close to your users. For more info see here . You can define a Durable Object in Python in a similar wa...
Workers - Static prerendering support for TanStack Start
TanStack Start apps can now prerender routes to static HTML at build time with access to build time environment variables and bindings, and serve them as static assets . To enable prerendering, configure the prerender option of the TanStack Start plugin in your Vite config: import { defineConfig } from "vite" ; impo...
Workers VPC - Origin CA certificate support for Workers VPC
Workers VPC now supports Cloudflare Origin CA certificates when connecting to your private services over HTTPS. Previously, Workers VPC only trusted certificates issued by publicly trusted certificate authorities (for example, Let's Encrypt, DigiCert). With this change, you can use free Cloudflare Origin CA certific...
Workers for Platforms - Workers for Platforms now supports Static Assets
Workers for Platforms customers can now attach static assets (HTML, CSS, JavaScript, images) directly to User Workers, removing the need to host separate infrastructure to serve the assets. This allows your platform to serve entire front-end applications from Cloudflare's global edge, utilizing caching for fast load...
Hyperdrive - Hyperdrive support for private databases with Workers VPC
You can now connect Hyperdrive to a private database through a Workers VPC service . This is the recommended way to connect Hyperdrive to a private database that is not exposed to the public Internet. When creating a Hyperdrive configuration in the Cloudflare dashboard, choose Connect to private database and then Wo...