Aio core utils
Project description
aio.core
Core definitions and utilities for the aio asyncio framework
Installation
Install with:
pip install aio.core
aio.core.exceptions usage
MissingConfiguration
>>> from configparser import ConfigParser >>> from aio.core.exceptions import MissingConfiguration
>>> def get_configuration(conf, section, option): ... try: ... conf[section][option] ... except KeyError: ... raise MissingConfiguration( ... "Configuration option is missing: %s:%s" % ( ... section, option))
>>> try: ... get_configuration(ConfigParser(), "foo", "bar") ... except MissingConfiguration as e: ... print(e) Configuration option is missing: foo:bar
BadConfiguration
>>> from aio.core.exceptions import BadConfiguration
>>> def get_configuration(conf, section, option, option_type): ... option_value = conf[section][option] ... try: ... option_type(option_value) ... except ValueError: ... raise BadConfiguration( ... 'Configuration is bad: %s:%s expected type %s, but got "%s"' % ( ... section, option, option_type.__name__, option_value))
>>> config = ConfigParser() >>> config.read_dict({"foo": {"bar": "baz"}})
>>> try: ... get_configuration(config, "foo", "bar", int) ... except BadConfiguration as e: ... print(e) Configuration is bad: foo:bar expected type int, but got "baz"
CommandError
>>> from aio.core.exceptions import CommandError
>>> def run_command(command): ... options = ["egg", "chips"] ... if command not in options: ... raise CommandError("This command cannot be called with %s" % command)
>>> try: ... run_command("spam") ... except CommandError as e: ... print(e) This command cannot be called with spam
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
aio.core-0.1.0.tar.gz
(2.7 kB
view details)
File details
Details for the file aio.core-0.1.0.tar.gz
.
File metadata
- Download URL: aio.core-0.1.0.tar.gz
- Upload date:
- Size: 2.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e2e1d5766ad09b894894b6bac8ddc5237a5bc7f00e9b21b00611944915227e10 |
|
MD5 | 14509139506bace4e62550ad26d197b6 |
|
BLAKE2b-256 | c7a151a422c3905f2443ac214ee118c9294ab0305036056a43af0ee841b56b9c |