Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -176,6 +176,7 @@ for field in user:
- [Writing plugins](https://protobufpy.com/writing-plugins/)
- [API reference](https://protobufpy.com/api/)
- [Code example](./examples/protobuf) — A working example that uses Protobuf to manage a persistent list of users.
- [Connect for Python](https://github.com/connectrpc/connect-py) — RPC clients and servers built on `protobuf-py`.

## Packages

Expand Down
2 changes: 2 additions & 0 deletions docs/generated-code/features.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ for service in example_pb.desc().services:
print(service.type_name)
```

For RPC clients and servers built on `protobuf-py`, see [Connect for Python](https://github.com/connectrpc/connect-py).

## Comments

Comments in `.proto` files become docstrings on the generated Python classes and attributes:
Expand Down
5 changes: 5 additions & 0 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,3 +60,8 @@ print(same.to_json())
**Zero dependencies.** The whole thing runs on Python 3.10+.

[Get started](./getting-started/installation.md)

## Building RPC APIs

`protobuf-py` gives you the message types. To turn your services into working RPC clients and servers, reach for [Connect for Python](https://github.com/connectrpc/connect-py). It builds directly on `protobuf-py` and is the best way to build APIs.

Loading