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"
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.0.4.tar.gz
(2.5 kB
view details)
File details
Details for the file aio.core-0.0.4.tar.gz
.
File metadata
- Download URL: aio.core-0.0.4.tar.gz
- Upload date:
- Size: 2.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 79fadde1f35cfed338a754085251da13f1f37128c0007b9a2fc25ede34be6ff8 |
|
MD5 | 36e43c43184fb7f02fbf9aa567714262 |
|
BLAKE2b-256 | 966a2488b70b3132b68129ef85f68e7f705f421658006beaaabbd8eeb9d337cb |