Skip to content

Commit 89a729c

Browse files
authored
Add links to Python packages docs
1 parent 76bf056 commit 89a729c

File tree

1 file changed

+4
-4
lines changed
  • src/content/docs/workers/languages/python/packages

1 file changed

+4
-4
lines changed

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ head:
99
import { Render } from "~/components";
1010

1111
[Pywrangler](https://github.com/cloudflare/workers-py?tab=readme-ov-file#pywrangler) is a CLI tool for managing packages and Python Workers.
12-
It is meant as a wrapper for wrangler that sets up a full environment for you, including bundling your packages into
12+
It is meant as a wrapper for [Wrangler CLI](/workers/wrangler/) that sets up a full Python virtual environment for you, including bundling your packages into
1313
your worker bundle on deployment.
1414

15-
To get started, create a pyproject.toml file with the following contents:
15+
To get started, create a `pyproject.toml` file with the following contents:
1616

1717
```toml
1818
[project]
@@ -28,7 +28,7 @@ dependencies = [
2828
dev = ["workers-py"]
2929
```
3030

31-
The above will allow your worker to depend on the [FastAPI](https://fastapi.tiangolo.com/) package.
31+
The above will allow your Worker to depend on the [FastAPI](https://fastapi.tiangolo.com/) package.
3232

3333
To run the worker locally:
3434

@@ -44,7 +44,7 @@ uv run pywrangler deploy
4444

4545
Your dependencies will get bundled with your worker automatically on deployment.
4646

47-
The `pywrangler` CLI also supports all commands supported by the `wrangler` tool, for the full list of commands run `uv run pywrangler --help`.
47+
`pywrangler` also supports all [commands supported by Wrangler](/workers/wrangler/commands/). For the full list of commands run `uv run pywrangler --help`.
4848

4949
## HTTP Client Libraries
5050

0 commit comments

Comments
 (0)