Aperol: A featherweight framework for configuration of Python objects
Project description
Aperol Config
Aperol is a featherweight framework for configuration of Python objects based on dependency injection.
Usage
Requires Python >= 3.10.
Install Aperol from PyPI:
$ pip install aperol
Define a basic configuration file dummy.yaml
:
imports:
- random
a: -1
b.type: math.pi
c.type: uniform
d:
type: uniform()
a: 10
b: 11
Python objects are specified by the type
keyword.
In the example above, uniform
is resolved to the random
module specified in the imports
section.
On the other hand, pi
is explicitly imported
from the math
module.
Load the config file using Aperol and use the configured objects:
>>> import random
>>> random.seed(0) # seed set for reproducibility
>>> import aperol
>>> configured = aperol.parse_config("dummy.yaml")
>>> configured["a"]
-1
>>> configured["b"]
3.141592653589793
>>> configured["c"]
_DelayedConstructor(factory=<bound method Random.uniform of <random.Random object at ...>>, init=False, kwargs={'a': -1, 'b': 3.141592653589793})
>>> configured["d"]
10.844421851525048
>>> uniform = configured["c"]
>>> uniform()
2.1391383869735945
>>> uniform()
0.7418361694776736
Package imports can be specified in one of three ways:
- Within the config
imports
section, - passing
search_pkgs
toaperol.parse_config
, or - registering imports globally with
aperol.register_imports
In all three cases, each import must either be a string module name "X.Y"
corresponding to import X.Y
, or a tuple ("X.Y", "Z")
corresponding to import X.Y as Z
.
Configuration file locations can be registered using aperol.register_config_path
.
Syntax
TODO (and TBC).
Related
Aperol is inspired by Gin Config. In comparison to Gin, Aperol allows configuration to be define using YAML (or any format which can be parsed to a nested dict tree). Thus it does not require learning a completely new syntax. Aperol is also simpler and does not provide all of the functionality of Gin; however, it is powerful enough to configure any Python object enabling flexible configuration.
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
Built Distribution
File details
Details for the file aperol-0.0.0a0.tar.gz
.
File metadata
- Download URL: aperol-0.0.0a0.tar.gz
- Upload date:
- Size: 10.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | aa2989252b7b1640941d3dcd388cf41b6d2aa90ceb0e6367b65d97d16ea3223e |
|
MD5 | 7d04deb0bdb970c671cdd8815ce85049 |
|
BLAKE2b-256 | e413ead5e1a2f32e6065b33922875c6a276e57cf2c93d259301ba295e4e3f1f9 |
File details
Details for the file aperol-0.0.0a0-py3-none-any.whl
.
File metadata
- Download URL: aperol-0.0.0a0-py3-none-any.whl
- Upload date:
- Size: 10.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bd44a34bde22c6a0ff68eb6734689d46602bb22bd8aa81b254cd2b555cec71c6 |
|
MD5 | 0540f74c1577592ed3aa1db5d6b1ebc6 |
|
BLAKE2b-256 | 9a0d434a80d560494a9fd16dfe7400c61d0f37152307c7a96825a0125bc2f808 |