Skip to content

Commit f8e2438

Browse files
dom96thomasgauvin
authored andcommitted
Remove Python packages warning from main Python docs (#24059)
1 parent c613661 commit f8e2438

File tree

1 file changed

+3
-5
lines changed
  • src/content/docs/workers/languages/python

1 file changed

+3
-5
lines changed

src/content/docs/workers/languages/python/index.mdx

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,9 @@ Cloudflare Workers provides first-class support for Python, including support fo
2121
- A robust [foreign function interface (FFI)](/workers/languages/python/ffi) that lets you use JavaScript objects and functions directly from Python — including all [Runtime APIs](/workers/runtime-apis/)
2222
- [Built-in packages](/workers/languages/python/packages), including [FastAPI](https://fastapi.tiangolo.com/), [Langchain](https://pypi.org/project/langchain/), [httpx](https://www.python-httpx.org/) and more.
2323

24-
:::caution[Python Workers are in beta. Packages do not run in production.]
24+
:::caution[Python Workers are in beta.]
2525

26-
Currently, you can only deploy Python Workers that use the standard library. [Packages](/workers/languages/python/packages/#supported-packages) **cannot be deployed** and will only work in local development for the time being.
27-
28-
You must add the `python_workers` compatibility flag to your Worker, while Python Workers are in open beta.
26+
You must add the `python_workers` compatibility flag to your Worker, while Python Workers are in open beta. Packages are supported using the [pywrangler](/workers/languages/python/packages) tool.
2927

3028
We'd love your feedback. Join the #python-workers channel in the [Cloudflare Developers Discord](https://discord.cloudflare.com/) and let us know what you'd like to see next.
3129
:::
@@ -152,4 +150,4 @@ async def on_fetch(request, env):
152150

153151
- Understand which parts of the [Python Standard Library](/workers/languages/python/stdlib) are supported in Python Workers.
154152
- Learn about Python Workers' [foreign function interface (FFI)](/workers/languages/python/ffi), and how to use it to work with [bindings](/workers/runtime-apis/bindings) and [Runtime APIs](/workers/runtime-apis/).
155-
- Explore the [Built-in Python packages](/workers/languages/python/packages) that the Workers runtime provides.
153+
- Explore the [packages](/workers/languages/python/packages) docs for instructions on how to use packages with Python Workers.

0 commit comments

Comments
 (0)