Metadata-Version: 2.1
Name: py-fast-grpc
Version: 0.3.1
Summary: gRPC simple and easy to use Python framework
License: MIT
Author: Oleg Yurchik
Requires-Python: >=3.11,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Dist: grpcio (>=1.59.3,<2.0.0)
Requires-Dist: grpcio-reflection (>=1.59.3,<2.0.0)
Requires-Dist: grpcio-tools (>=1.59.3,<2.0.0)
Requires-Dist: jinja2 (>=3.1.2,<4.0.0)
Requires-Dist: pydantic (>=2.5.1,<3.0.0)
Description-Content-Type: text/markdown

# Fast-gRPC

Fast-gRPC it is simple and easy to use Python gRPC framework.

## Installation

```shell
pip install py-fast-grpc
```

## Quick Start

```python
from fast_grpc import FastGRPC, FastGRPCService, grpc_method
from pydantic import BaseModel


class HelloRequest(BaseModel):
    name: str


class HelloResponse(BaseModel):
    text: str


class Greeter(FastGRPCService):
    @grpc_method()
    async def say_hello(self, request: HelloRequest) -> HelloResponse:
        return HelloResponse(text=f"Hello, {request.name}!")


app = FastGRPC(Greeter())
app.run()
```

## TODO

1. Add middlewares support
2. Add returning .proto files
3. Add unit tests

