Skip to main content

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 Exception 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: expected type %s, but got "%s"' % (
...                 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: expected type int, but got "baz"

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

aio.core-0.0.3.tar.gz (2.3 kB view details)

Uploaded Source

File details

Details for the file aio.core-0.0.3.tar.gz.

File metadata

  • Download URL: aio.core-0.0.3.tar.gz
  • Upload date:
  • Size: 2.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for aio.core-0.0.3.tar.gz
Algorithm Hash digest
SHA256 11dcaeab8cee64f229488edb59cf93259a3e0cae7276fe778ae7880017863979
MD5 daee7a2f6b4713e41f9f2f3b71218d23
BLAKE2b-256 e90c45c78240a979f146ba5d41f6da6b74ba053f4407371ec014a09b578e1886

See more details on using hashes here.

Supported by

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