Descriptor based dataclass implementation
Project description
ZnInit - Automatic Generation of __init__ based on Descriptors
This package provides a base class for dataclass like structures with the
addition of using
Descriptors. The main
functionality is the automatic generation of an keyword-only__init__ based on
selected descriptors. The descriptors can e.g. overwrite __set__ or __get__
or have custom metadata associated with them. The ZnInit package is used by
ZnTrack to enable lazy loading data from
files as well as distinguishing between different types of descriptors such as
zn.params or zn.outputs. An example can be found in the examples
directory.
Example
The most simple use case is a replication of a dataclass like structure.
from zninit import ZnInit, Descriptor
class Human(ZnInit):
name: str = Descriptor()
language: str = Descriptor("EN")
# This will generate the following init:
def __init__(self, *, name, language="EN"):
self.name = name
self.language = language
fabian = Human(name="Fabian")
# or
fabian = Human(name="Fabian", language="DE")
The benefit of using ZnInit comes with using descriptors. You can subclass the
zninit.Descriptor class and only add certain kwargs to the __init__ defined
in init_descriptors: list. Furthermore, a post_init method is available to
run code immediately after initializing the class.
from zninit import ZnInit, Descriptor
class Input(Descriptor):
"""A Parameter"""
class Metric(Descriptor):
"""An Output"""
class Human(ZnInit):
_init_descriptors_ = [Input] # only add Input descriptors to the __init__
name: str = Input()
language: str = Input("DE")
date: str = Metric() # will not appear in the __init__
def _post_init_(self):
self.date = "2022-09-16"
julian = Human(name="Julian")
print(julian) # Human(language='DE', name='Julian')
print(julian.date) # 2022-09-16
print(Input.get_dict(julian)) # {"name": "Julian", "language": "DE"}
One benefit of ZnInit is that it also allows for inheritance.
from zninit import ZnInit, Descriptor
class Animal(ZnInit):
age: int = Descriptor()
class Cat(Animal):
name: str = Descriptor()
billy = Cat(age=4, name="Billy")
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 zninit-0.1.11.tar.gz.
File metadata
- Download URL: zninit-0.1.11.tar.gz
- Upload date:
- Size: 13.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.5.1 CPython/3.10.8 Linux/6.2.0-32-generic
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fc14a55bd85a38f8f1411bd319cac541c2e6e16ab402f3f11a94e182b0681965
|
|
| MD5 |
901e0bc423b8494768d556f9fc114101
|
|
| BLAKE2b-256 |
06345a2b779e62ddb7fc42a25d7056f41bb95a0a2241268f6cb301ff367b58a6
|
File details
Details for the file zninit-0.1.11-py3-none-any.whl.
File metadata
- Download URL: zninit-0.1.11-py3-none-any.whl
- Upload date:
- Size: 13.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.5.1 CPython/3.10.8 Linux/6.2.0-32-generic
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
78e5c7e1d0d50c131cf8efab58aad4a213446a1c38f38360731bf11b778e29e1
|
|
| MD5 |
39735f00edbf91770f733ee1ab2c8da2
|
|
| BLAKE2b-256 |
2e1a06bde8267e02d801d4fe04f4fb68540933ef051de4e471ee2d2b350ee65c
|