Skip to main content

Descriptor based dataclass implementation

Project description

Coverage Status PyTest PyPI version code-style Binder

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

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


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

zninit-0.1.1.tar.gz (11.3 kB view details)

Uploaded Source

Built Distribution

zninit-0.1.1-py3-none-any.whl (11.9 kB view details)

Uploaded Python 3

File details

Details for the file zninit-0.1.1.tar.gz.

File metadata

  • Download URL: zninit-0.1.1.tar.gz
  • Upload date:
  • Size: 11.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.2.1 CPython/3.8.13 Linux/5.4.0-125-generic

File hashes

Hashes for zninit-0.1.1.tar.gz
Algorithm Hash digest
SHA256 faf1d0cd3d05ed94c209d9730aec69d3f17673258bbc3afa86d618e465199617
MD5 fc5627854726e61ec489e5ef0e1ac5a2
BLAKE2b-256 70c3b2a424a05505e056d046e2127978b68061326439e613aa74a3d888bba4bc

See more details on using hashes here.

File details

Details for the file zninit-0.1.1-py3-none-any.whl.

File metadata

  • Download URL: zninit-0.1.1-py3-none-any.whl
  • Upload date:
  • Size: 11.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.2.1 CPython/3.8.13 Linux/5.4.0-125-generic

File hashes

Hashes for zninit-0.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 a89c276e89e47df9b561733dc437cd0f5bd8364e171e253cdf76459955e8026c
MD5 e34e8123bff2046e1b812033cf05a1cc
BLAKE2b-256 e6069504d3f32ad65af3eca794835b645644c5c44e21b46ac834a5d491c6ffdd

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