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
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Connect is a simple, reliable, and interoperable RPC framework that combines the
## Installation

```bash
pip install connect-py
pip install connectpy
```

**⚠️ Dependency Notice**: For gRPC/gRPC-Web support, this package uses forked libraries:
Expand Down Expand Up @@ -266,7 +266,7 @@ This project includes a Protocol Buffer plugin (`protoc-gen-connect-python`) wri

## Contributing

We warmly welcome and greatly value contributions to the connect-py. However, before diving in, we kindly request that you take a moment to review our Contribution Guidelines.
We warmly welcome and greatly value contributions to the connectpy. However, before diving in, we kindly request that you take a moment to review our Contribution Guidelines.

Additionally, please carefully read the Contributor License Agreement (CLA) before submitting your contribution to Gaudiy. By submitting your contribution, you are considered to have accepted and agreed to be bound by the terms and conditions outlined in the CLA, regardless of circumstances.

Expand Down
4 changes: 2 additions & 2 deletions conformance/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ authors = [{ name = "tsubakiky", email = "salovers1205@gmail.com" }]
requires-python = ">=3.13"
dependencies = [
"anyio>=4.8.0",
"connect-py",
"connectpy",
"cryptography>=44.0.2",
"hypercorn",
]

[tool.uv.sources]
connect-py = { path = "../" }
connectpy = { path = "../" }
hypercorn = { git = "https://github.com/tsubakiky/hypercorn" }

[dependency-groups]
Expand Down
408 changes: 213 additions & 195 deletions conformance/uv.lock

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions examples/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@ license = { text = "Apache-2.0" }
authors = [{ name = "tsubakiky", email = "salovers1205@gmail.com" }]
requires-python = ">=3.13"
version = "0.1.0"
dependencies = ["connect-py", "hypercorn"]
dependencies = ["connectpy", "hypercorn"]

[tool.uv]
dev-dependencies = ["mypy>=1.13.0", "pyright>=1.1.390", "ruff>=0.8.2"]

[tool.uv.sources]
connect-py = { path = "../" }
connectpy = { path = "../" }
hypercorn = { git = "https://github.com/tsubakiky/hypercorn" }

[tool.ruff]
Expand Down
427 changes: 249 additions & 178 deletions examples/uv.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ requires = ["hatchling"]
build-backend = "hatchling.build"

[project]
name = "connect-py"
name = "connectpy"
description = "The Python implementation of Connect: Protobuf RPC that works."
readme = "README.md"
license = { text = "Apache-2.0" }
Expand Down
2 changes: 1 addition & 1 deletion src/connect/protocol_connect/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,4 +41,4 @@
CONNECT_UNARY_CONNECT_QUERY_VALUE = "v" + CONNECT_PROTOCOL_VERSION

_python_version = f"{sys.version_info.major}.{sys.version_info.minor}"
DEFAULT_CONNECT_USER_AGENT = f"connect-py/{__version__} (Python/{_python_version})"
DEFAULT_CONNECT_USER_AGENT = f"connectpy/{__version__} (Python/{_python_version})"
2 changes: 1 addition & 1 deletion src/connect/protocol_grpc/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@

GRPC_ALLOWED_METHODS = [HTTPMethod.POST]
_python_version = f"{sys.version_info.major}.{sys.version_info.minor}"
DEFAULT_GRPC_USER_AGENT = f"connect-py/{__version__} (Python/{_python_version})"
DEFAULT_GRPC_USER_AGENT = f"connectpy/{__version__} (Python/{_python_version})"

RE_TIMEOUT = re.compile(r"^(\d{1,8})([HMSmun])$")

Expand Down
116 changes: 61 additions & 55 deletions uv.lock

Large diffs are not rendered by default.

Loading