Adorn
Project description
Features
adorn is a configuration tool for python code.
adorn can currently
instantiate an object
check that a config can instantiate an object
Example
from adorn.orchestrator.base import Base
from adorn.params import Params
from adorn.unit.complex import Complex
from adorn.unit.constructor_value import ConstructorValue
from adorn.unit.parameter_value import ParameterValue
from adorn.unit.python import Python
@Complex.root()
class Example(Complex):
pass
@Example.register(None)
class Parent(Example):
def __init__(self, parent_value: str) -> None:
super().__init__()
self.parent_value = parent_value
@Parent.register("child")
class Child(Parent):
def __init__(self, child_value: int, **kwargs) -> None:
super().__init__(**kwargs)
self.child_value = child_value
base = Base(
[
ConstructorValue(),
ParameterValue(),
Example(),
Python()
]
)
params = Params(
{
"type": "child",
"child_value": 0,
"parent_value": "abc"
}
)
# well specified configuration
# we can type check from any level in the
# class hierarchy
assert base.type_check(Example, params) is None
assert base.type_check(Parent, params) is None
assert base.type_check(Child, params) is None
# instantiate
# we can instantiate from any level in the
# class hierarchy
example_obj = base.from_obj(
Example,
params
)
assert isinstance(example_obj, Child)
parent_obj = base.from_obj(
Parent,
params
)
assert isinstance(parent_obj, Child)
child_obj = base.from_obj(
Child,
params
)
assert isinstance(child_obj, Child)
Installation
You can install Adorn via pip from PyPI:
$ pip install adorn
Contributing
Contributions are very welcome. To learn more, see the Contributor Guide.
License
Distributed under the terms of the Apache 2.0 license, Adorn is free and open source software.
Issues
If you encounter any problems, please file an issue along with a detailed description.
Credits
This project was generated from @cjolowicz’s Hypermodern Python Cookiecutter template.
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file adorn-0.1.7.tar.gz.
File metadata
- Download URL: adorn-0.1.7.tar.gz
- Upload date:
- Size: 43.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
853064087377c5b997755eb8cb01336dd97a11b246ecf3d615aaa439d0cfe526
|
|
| MD5 |
b7694bf96d39fcfe754f9a9c84372db3
|
|
| BLAKE2b-256 |
937df587e8ffc7e6f704440ea0b42b38df8da7e0b3dfc1c27c8ae41f3fd3b955
|
File details
Details for the file adorn-0.1.7-py3-none-any.whl.
File metadata
- Download URL: adorn-0.1.7-py3-none-any.whl
- Upload date:
- Size: 63.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7c419c5c439cd139f5d82fea0d915b9367993c7483b38ce2ea744fb29f837116
|
|
| MD5 |
f67e516388702aaab58c218018bf864d
|
|
| BLAKE2b-256 |
0353271cb6ac4f66f21abb6bb403c15a946b0018e3db7f933de83516060d0ea2
|