AsyncIO application as a hierarchy of services


Keywords
asyncio, app, framework, application, python3
License
Apache-2.0
Install
pip install async-app==1.0.0b15

Documentation

Travis AppVeyor Coverage Updates Python 3 PyPI

Key Features

  • Service-oriented application layout
  • Integrate different asyncio libraries with ease
  • typing-friendly Config that can enforce types (via typeguard or pytypes)

Installation

  • pip install async_app
  • pip install async_app[typeguard] to enforce Config's types with typeguard.
  • pip install async_app[pytypes] to enforce Config's types with pytypes.

Development

requirements.txt lists all dependencies needed to run tests and generate reports.

CI tests each change against latest release of CPython 3 (Windows and macOS) as well as dev (macOS and Ubuntu) and nightly builds (Ubuntu). Tests are run against both pytypes and typeguard. Combined coverage is uploaded to PyPI. See .travis.yml, .appveyor.yml and setup.cfg for the detailed configuration.