Skip to content

Latest commit

 

History

History

README.md

Minos logo

minos-database-aiopg

PyPI Latest Release GitHub Workflow Status License Coverage Stack Overflow

Summary

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.

Installation

Install the dependency:

pip install minos-database-aiopg

Set 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
  ...
...

Documentation

The official API Reference is publicly available at the GitHub Pages.

Source Code

The source code of this project is hosted at the GitHub Repository.

Getting Help

For usage questions, the best place to go to is StackOverflow.

Discussion and Development

Most development discussions take place over the GitHub Issues. In addition, a Gitter channel is available for development-related questions.

License

This project is distributed under the MIT license.