GRPC Django Framework
Python Django gRPC microservice framework
Requirements
GRPC Django requires the following * Python (>=3.5) * Django (1.11, >=2.0) * Django REST framework
Installation
Install using pip,
pip install grpc-django
Add 'grpc_django' to your INSTALLED_APPS setting.
INSTALLED_APPS = (
...
'grpc_django',
)
Quickstart
The quickstart guide is the fastest way to get up and running, and exposing RPCs with GRPC Django framework.