@@ -26,17 +26,17 @@ This repo provides a Python implementation of Connect, including both client and
2626### Install the runtime library
2727
2828``` bash
29- pip install connect-python
29+ pip install connectrpc
3030```
3131
3232Or with your preferred package manager:
3333
3434``` bash
3535# Using uv
36- uv add connect-python
36+ uv add connectrpc
3737
3838# Using poetry
39- poetry add connect-python
39+ poetry add connectrpc
4040```
4141
4242### Install the code generator
@@ -58,20 +58,20 @@ plugins:
5858 out : .
5959` ` `
6060
61- Or, you can install the compiler (e.g. ` pip install protoc-gen-connect-python `), and
62- it can be referenced as `protoc-gen-connect-python `.
63- Then, you can use `protoc-gen-connect-python ` as a local plugin :
61+ Or, you can install the compiler (e.g. ` pip install protoc-gen-connectrpc `), and
62+ it can be referenced as `protoc-gen-connectrpc `.
63+ Then, you can use `protoc-gen-connectrpc ` as a local plugin :
6464
6565` ` ` yaml
66- - local: .venv/bin/protoc-gen-connect-python
66+ - local: .venv/bin/protoc-gen-connectrpc
6767 out: .
6868` ` `
6969
7070Alternatively, download a precompiled binary from the
7171[releases](https://github.com/connectrpc/connect-python/releases).
7272
73- ` protoc-gen-connect-python ` is only needed for code generation. Your actual
74- application should include `connect-python ` as a dependency for the runtime
73+ ` protoc-gen-connectrpc ` is only needed for code generation. Your actual
74+ application should include `connectrpc ` as a dependency for the runtime
7575component.
7676
7777# ## Basic Client Usage
@@ -383,7 +383,7 @@ When exceeded, returns `RESOURCE_EXHAUSTED` error.
383383
384384# ## Proto Editions Support
385385
386- `protoc-gen-connect-python ` supports up to [Protobuf Editions](https://protobuf.dev/editions/overview/) 2024 :
386+ `protoc-gen-connectrpc ` supports up to [Protobuf Editions](https://protobuf.dev/editions/overview/) 2024 :
387387
388388` ` ` proto
389389edition = "2024";
0 commit comments