GitXplorerGitXplorer
r

aio_manager

public
1 stars
4 forks
0 issues

Commits

List of commits on branch master.
Verified
6a0734cf4e97ec3fbd9eaa6f149c8cd307b301a5

Don't override long description in setup.py

wwebknjaz committed 7 years ago
Verified
5ef989b659483c94dc08c1e1015fb38bc7b4071e

Make README.rst distribution's long description

wwebknjaz committed 7 years ago
Verified
95fdac72a3f308c28dddd6b8ebcb964f1cae9ff1

Include LICENSE file into binary wheel

wwebknjaz committed 7 years ago
Verified
51a1376b819856c1e474144794aa0e9b3ab5fa87

Add changelog for v2.0.1

wwebknjaz committed 7 years ago
Verified
4098309e51c0fef6414747ad8994a18cd520a667

Improve dist setup

wwebknjaz committed 7 years ago
Verified
3fc369f0bc8f29ea8af1ffb51cc796fb52b588ee

Drop deprecated downloads-per-month badge

wwebknjaz committed 7 years ago

README

The README file for this repository.

.. image:: https://img.shields.io/pypi/v/aio_manager.svg :target: https://pypi.org/project/aio_manager

.. image:: https://img.shields.io/travis/rrader/aio_manager/master.svg :target: http://travis-ci.org/rrader/aio_manager

.. image:: https://img.shields.io/pypi/pyversions/aio_manager.svg

Script manager for aiohttp.

Quick Start

Install from PYPI:

.. code:: shell

pip install aio_manager

For optional features, feel free to depend on extras:

.. code:: shell

pip install aio_manager[mysql,postgres]
pip install aio_manager[sa]

OR (less popular) via setup.py:

.. code:: shell

python -m setup install

Example

.. code:: python :number-lines:

app = build_application()
manager = Manager(app)

sqlalchemy.configure_manager(manager, app, Base,
                             DATABASE_USERNAME,
                             DATABASE_NAME,
                             DATABASE_HOST,
                             DATABASE_PASSWORD)