pyms
pyms copied to clipboard
Library of utils to create REST Python Microservices
Update [init_app](https://github.com/python-microservices/pyms/blob/master/pyms/flask/app/create_app.py#L167) to support FastAPI **Possible Issues:** - Connexion or FlaskTracing will not work with this new framework, add validations to raise an IncompatibilityError - Not confirmed: maybe some methods...
Not all microservices are RESTful service. A common use case is read and/or write information form a queue. A simple solution (and in most case, the best solution) to retrieve...
**Is your feature request related to a problem? Please describe.** Create a service to handle GraphQL APIs, by using [flask-graphql](https://github.com/graphql-python/flask-graphql).
An API returns an [marshmallow.Schema](https://marshmallow.readthedocs.io/en/stable/) object or a list of dictionaries as usually to jsonify parameter like: ```python from marshmallow import Schema schema.dump(query.items, many=True) jsonify(result) ``` Create a output: ```json...
Bumps [future](https://github.com/PythonCharmers/python-future) from 0.18.2 to 0.18.3. Release notes Sourced from future's releases. v0.18.3 This is a minor bug-fix release containing a number of fixes: Backport fix for bpo-38804 (c91d70b) Fix...
**Describe the bug** main.py fails with error: python main.py Traceback (most recent call last): File "/Users/a369505/gitwkspace/US1050985/pyms/src/main.py", line 15, in app.run() File "/Users/a369505/.pyenv/versions/3.9.9/lib/python3.9/site-packages/flask/app.py", line 1188, in run run_simple(t.cast(str, host), port, self,...
**Is your feature request related to a problem? Please describe.** In my company we're looking to migrate towards a microservices architecture so we're currently looking into setting up a microservice...
**Describe the bug** from pyms.flask.app import Microservice ms = Microservice() app = ms.create_app() if __name__ == '__main__': app.run() And I had this errors. Can I help me? Traceback (most recent...
**Describe the bug** The project seems to have reasonable good pull requests and no replies on them. So is there any maintainer who is around to give control to more...