Minos is a framework which helps you create reactive microservices in Python. Internally, it leverages Event Sourcing, CQRS and a message driven architecture to fulfil the commitments of an asynchronous environment.
Install the dependency:
pip install minos-database-aiopgSet the database client on the config.yml file:
...
databases:
default:
client: minos.plugins.aiopg.AiopgDatabaseClient
database: order_db
user: minos
password: min0s
host: localhost
port: 5432
query:
client: minos.plugins.aiopg.AiopgDatabaseClient
database: order_query_db
user: minos
password: min0s
host: localhost
port: 5432
...
...The official API Reference is publicly available at the GitHub Pages.
The source code of this project is hosted at the GitHub Repository.
For usage questions, the best place to go to is StackOverflow.
Most development discussions take place over the GitHub Issues. In addition, a Gitter channel is available for development-related questions.
This project is distributed under the MIT license.
