You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
from your_service_connect import HelloServiceClientSync
115
131
116
132
# Create sync client
@@ -128,7 +144,7 @@ Check out [the docs](https://connectrpc.com/docs/python/getting-started) for mor
128
144
129
145
## Streaming Support
130
146
131
-
connect-python supports all RPC streaming types:
147
+
Connect supports all RPC streaming types:
132
148
133
149
- **Unary**: Single request, single response
134
150
- **Server Streaming**: Single request, multiple responses
@@ -236,25 +252,25 @@ We verify the following servers with ConnectRPC's conformance suite.
236
252
237
253
For ASGI servers:
238
254
239
-
- [pyvoy](https://pyvoy.dev) - Fully-featured ASGI server, enables all of Connect-Python's features
255
+
- [pyvoy](https://pyvoy.dev) - Fully-featured ASGI server, enables all of Connect's features
240
256
- [Uvicorn](https://www.uvicorn.org/) - Lightning-fast ASGI server for HTTP/1
241
257
242
258
For WSGI servers:
243
259
244
-
- [pyvoy](https://pyvoy.dev) - Fully-featured WSGI server, enables all of Connect-Python's features
260
+
- [pyvoy](https://pyvoy.dev) - Fully-featured WSGI server, enables all of Connect's features
245
261
- [Gunicorn](https://gunicorn.org/) - Python WSGI HTTP Server for HTTP/1
246
262
247
263
Other ASGI and WSGI servers should also generally work though we have found some issues with flakiness
248
264
with our conformance tests. If you don't have any preference, we recommend one of the above servers.
249
265
250
266
## WSGI Support
251
267
252
-
connect-python provides full WSGI support via `ConnectWSGIApplication` for synchronous Python applications. This enables integration with traditional WSGI servers like Gunicorn and uWSGI.
268
+
Connect provides full WSGI support via `ConnectWSGIApplication` for synchronous Python applications. This enables integration with traditional WSGI servers like Gunicorn and uWSGI.
253
269
254
270
```python
255
271
from connectrpc.request import RequestContext
256
272
from connectrpc.server import ConnectWSGIApplication
257
-
from your_service_pb2 import Request, Response
273
+
from your_service_pb import Request, Response
258
274
from your_service_connect import YourService, YourServiceWSGIApplication
Copy file name to clipboardExpand all lines: RELEASE.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
-
# Releasing connect-python
1
+
# Releasing Connect
2
2
3
-
This document outlines how to create a release of connect-python.
3
+
This document outlines how to create a release of Connect.
4
4
5
5
1. Clone the repo, ensuring you have the latest main.
6
6
@@ -11,7 +11,7 @@ This document outlines how to create a release of connect-python.
11
11
12
12
Note the new version X.Y.Z in the updated files.
13
13
14
-
3. Open a PR titled "Prepare for vX.Y.Z" ([Example PR: #60](https://github.com/connectrpc/connect-python/pull/60)) and assign the `connectrpc/python` group as reviewers. Once it's approved by at
14
+
3. Open a PR titled "Prepare for vX.Y.Z" ([Example PR: #60](https://github.com/connectrpc/connect-py/pull/60)) and assign the `connectrpc/python` group as reviewers. Once it's approved by at
15
15
least one other maintainer and CI passes, merge it.
16
16
17
17
_Make sure no new commits are merged until the release is complete._
0 commit comments