PyMS, Python MicroService, is a collections of libraries, best practices and recommended ways to build microservices with Python.
To know how use, install or build a project see the docs: https://py-ms.readthedocs.io/en/latest/
When we started to create microservice with no idea, we were looking for tutorials, guides, best practices, but we found nothing to create professional projects. Most articles say:
- "Install flask"
- "Create routes"
- (Sometimes) "Create a swagger specs"
- "TA-DA! you have a microservice"
But... what happens with our configuration out of code like Kubernetes configmap? what happens with transactionality? If we have many microservices, what happens with traces?.
There are many problems around Python and microservices and we can`t find anyone to give a solution.
We start creating these projects to try to solve all the problems we have found in our professional lives about microservices architecture.
Nowadays, is not perfect and we have a looong roadmap, but we hope this library could help other felas and friends ;)
pip install py-ms
Module to read yaml or json configuration from a dictionary or a path.
With the function create_app
initialize the Flask app, register blueprints
and initialize all libraries such as Swagger, database, trace system, custom logger format, etc.
Integrations and wrappers over common libs like request, swagger, connexion
This view is usually used by Kubernetes, Eureka and other systems to check if our application is running.
Print logger in JSON format to send to server like Elasticsearch. Inject span traces in logger.
Create an injector flask_opentracing.FlaskTracer
to use in our projects.
We appreciate opening issues and pull requests to make PyMS even more stable & useful! See This doc for more details