Skip to main content

Simple and lightweight async console runner.

Project description

Async cli client/commander framework

PyPI version PyPIDownloads CI

aiocli is a Python library for simple and lightweight async console runner.

Full compatibility with argparse module and highly inspired by aiohttp module.

Installation

Use the package manager pip to install aiocli.

pip install aiocli

Documentation

Usage

from logging import getLogger, Logger, StreamHandler
from os import getenv

from aiocli.commander import run_app, Application, Depends, State

app = Application(state={
    'envs': {
        'LOGGER_NAME': str(getenv('LOGGER_NAME', 'example_app')),
        'LOGGER_LEVEL': str(getenv('LOGGER_LEVEL', 'INFO')),
    }
})

def _get_logger(state: State) -> Logger:
    logger = getLogger(state.get('envs')['LOGGER_NAME'])
    logger.setLevel(state.get('envs')['LOGGER_LEVEL'])
    handler = StreamHandler()
    logger.addHandler(handler)
    return logger

@app.command(name='greet:to', positionals=[('name', {'default': 'World!'})])
async def handle_greeting(name: str, logger: Logger = Depends(_get_logger)) -> int:
    logger.info(f'Hello {name}')
    return 0

@app.command(name='div', optionals=[('--a', {'type': float}), ('--b', {'type': float})])
async def handle_division(a: float, b: float, logger: Logger = Depends(_get_logger)) -> int:
    try:
        logger.info(f'Result {a} / {b} = {(a / b)}')
        return 0
    except BaseException as err:
        logger.error(f'Error: {err}')
        return 1

# python3 main.py <command> <positionals> <optionals>
if __name__ == '__main__':
    run_app(app)

Requirements

  • Python >= 3.10

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

Please make sure to update tests as appropriate.

License

MIT

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

aiocli-1.12.0.tar.gz (16.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

aiocli-1.12.0-py3-none-any.whl (14.2 kB view details)

Uploaded Python 3

File details

Details for the file aiocli-1.12.0.tar.gz.

File metadata

  • Download URL: aiocli-1.12.0.tar.gz
  • Upload date:
  • Size: 16.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.0

File hashes

Hashes for aiocli-1.12.0.tar.gz
Algorithm Hash digest
SHA256 6ce369b19796ac3d5f4de6db847b36a1c8b5d1a44b70259f288f20b31415f2ff
MD5 c2c184ef89b4431020e827947b056e56
BLAKE2b-256 4c1f7f133fc37bd0d93531c2ba77b5cf143c75bcaa481701e6dd3d9a4b0c6084

See more details on using hashes here.

File details

Details for the file aiocli-1.12.0-py3-none-any.whl.

File metadata

  • Download URL: aiocli-1.12.0-py3-none-any.whl
  • Upload date:
  • Size: 14.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.0

File hashes

Hashes for aiocli-1.12.0-py3-none-any.whl
Algorithm Hash digest
SHA256 28962aa790ec62fcda6133b865017e9c4cdb3aecb79b333d9d9bc122508f9954
MD5 1d0f9f2039f1c923383f86f4893fbab8
BLAKE2b-256 09ee9d16990d2eff2f35191e31c3a2c8de5f59d47f3a76d6e405f1fd4ddf12e9

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page