Skip to main content

Library of utils to create REST Python Microservices

Project description

Python Microservices Library

PyPI version Build Status Coverage Status Requirements Status Total alerts Language grade: Python Documentation Status Gitter

PyMS, Python MicroService, is a Microservice chassis pattern like Spring Boot (Java) or Gizmo (Golang). PyMS is a collection of libraries, best practices and recommended ways to build microservices with Python which handles cross-cutting concerns:

  • Externalized configuration
  • Logging
  • Health checks
  • Metrics
  • Distributed tracing

PyMS is powered by Flask, Connexion and Opentracing.

Get started with Installation and then get an overview with the Quickstart.

Documentation

To know how use, install or build a project see the docs.

Motivation

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 fellas and friends ;)

Installation

pip install py-ms[all]

Quickstart

You need to create 2 files: main.py and config.yml:

  • main.py
from flask import jsonify

from pyms.flask.app import Microservice

ms = Microservice() # 1.1
app = ms.create_app() # 2.1


@app.route("/") # 3.1
def example():
    return jsonify({"main": "hello world"})


if __name__ == '__main__':
    app.run()
  • config.yml
pyms:
  services: # 1.2
    requests:
      data: {}
  config: # 1.3
    DEBUG: true
    APP_NAME: business-glossary
    APPLICATION_ROOT : ""
    SECRET_KEY: "gjr39dkjn344_!67#"

So what did that code do?

  1. Create a instance of PyMS Microservice class (#1.1). This initialization inject the configuration defined in the 1.3 block and could be accessed through current_app.config like typical Flask config. Then, initialize the service defined in the 1.2 block. See Services for more details.

  2. Initialize Flask instance, Connexion if it was defined in the pyms configuration block, create a tracer, add health-check blueprint, initialize libs and set the PyMS Microservice in ms attribute and you can access to it with current_app.ms.
    This steps has their each functions and you can easy override it.

  3. create_app return the flask instance and you can interact with it as a typical flask app

See Documentation to learn more.

Create a project from scaffold

PyMS has a command line option to create a project template like Microservices Scaffold. This command use cookiecutter to download and install this template

[Warning] You must run first pip install cookiecutter==1.7.0

pyms startproject

this output a lot of options step by step:

project_repo_url [https://github.com/python-microservices/microservices-scaffold]: 
project_name [Python Microservices Boilerplate]: example project
project_folder [example_project]: 
project_short_description [Python Boilerplate contains all the boilerplate you need to create a Python package.]: 
create_model_class [y]: 
microservice_with_swagger_and_connexion [y]: 
microservice_with_traces [y]: 
microservice_with_metrics [y]: 
application_root [/example_project]: 
Select open_source_license:
1 - MIT license
2 - BSD license
3 - ISC license
4 - Apache Software License 2.0
5 - GNU General Public License v3
6 - Not open source
Choose from 1, 2, 3, 4, 5, 6 [1]: 

When you finish to introduce the options, a project will be created in [project_folder] folder

How To Contrib

We appreciate opening issues and pull requests to make PyMS even more stable & useful! See This doc for more details.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

py-ms-2.6.0.tar.gz (22.5 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

py_ms-2.6.0-py3-none-any.whl (42.9 kB view details)

Uploaded Python 3

File details

Details for the file py-ms-2.6.0.tar.gz.

File metadata

  • Download URL: py-ms-2.6.0.tar.gz
  • Upload date:
  • Size: 22.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/45.2.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.7.6

File hashes

Hashes for py-ms-2.6.0.tar.gz
Algorithm Hash digest
SHA256 b9953859e785db4f8b3e15873fa5ca568c14ebd19bc9169578c9e568ed4f62bc
MD5 cbedc9e3dfb6b4d7777de2faa91286cd
BLAKE2b-256 94a7b89ec7e7116d4b7d0eae9c8fe7a82b0d4457c7f8e4271362d3cda7ee326a

See more details on using hashes here.

File details

Details for the file py_ms-2.6.0-py3-none-any.whl.

File metadata

  • Download URL: py_ms-2.6.0-py3-none-any.whl
  • Upload date:
  • Size: 42.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/45.2.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.7.6

File hashes

Hashes for py_ms-2.6.0-py3-none-any.whl
Algorithm Hash digest
SHA256 fa8d56995abadf42382c59d5b91b5e7137005a8318026501a8de6bcb2ec9d81d
MD5 c4a3ac6c9d6253e5d07e832e835f8bdc
BLAKE2b-256 f98459a144b90f458e9fb34dbf699329431eaa8f441e82006e512bd456f41870

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page