A template micro-service you can use for your distributed systems, built with Python 3+. Built around the principles outlined in Microservice chassis on par with Spring Boot (Java) or Gizmo (Golang).
TODO: Python Microservices With gRPC
General Challenges Solved:
- Externalized configuration (TODO)
- Logging
- Health checks (TODO)
- Metrics (TODO)
- Distributed tracing (TODO)
$ virtualenv new -p python3.8 py-service
$ pip3 install -r requirements.txt
$ uvicorn main:app --reload --host 0.0.0.0 --port 8000 --log-level='info'
$ python3 test.py