Django Socio gRPC is a toolkit for building gRPC services, inspired by Django REST framework. It is based on django-grpc-framework and includes all the DRF features such as authentication, filtering, pagination, and more complex proto generation.
The documentation can be found here.
- Python (>= 3.10)
- Django (>=4.2), Django REST Framework (>=3.10)
- grpcio-tools (>=1.50.0)
Run the following command using pip:
pip install django-socio-grpc
Then, add django_socio_grpc
to your INSTALLED_APPS
setting:
INSTALLED_APPS = [
...
'django_socio_grpc',
]
docker compose up
For local documentation go to http://localhost:6001
docker compose exec django-socio-grpc poetry run tests