Dataclasses married with yaml.
Project description
yamliz
Python's 3.7 dataclasses got maried with pyyaml.
Installation:
pip install yamliz
Usage example:
import dataclasses import yamliz from yamliz import fields @dataclasses.dataclass class Some(yamliz.Able): id: int = fields.Integer() mac: str = fields.MacAddress() ip: str = fields.IPv4() version: int = fields.Integer(default=411)
Now the Some
object can be created as a pure python object (thanks to dataclass
)
it is equipped with __init__
, __repr__
, __eq__
and some other methods.
>>> obj = Some(123, 'aa:bb:cc:11:22:33', '192.168.11.6') >>> obj Some(id=123, mac='aa:bb:cc:11:22:33', ip='192.168.11.6', version=411) >>> print(obj) !iz/Some id: 123 ip: 192.168.11.6 mac: aa:bb:cc:11:22:33 version: 411
It's attributes are regular python attributes:
>>> obj.id 123 >>> obj.mac 'aa:bb:cc:11:22:33' >>> obj.ip '192.168.11.6' >>> obj.version = 0 # can be assigned >>> print(repr(obj)) Ints(id=123, mac='aa:bb:cc:11:22:33', ip='192.168.11.6', version=0)
It can be also deserialized from yaml directly to the custom object:
>>> yaml_string = """ !iz/Some id: 22001 ip: 12.13.14.15 mac: aa:bb:cc:11:22:33 version: 0 """ >>> import yaml >>> obj2 = yaml.load(yaml_string, Loader=yaml.Loader) >>> repr(obj2) Some(id=22001, mac='aa:bb:cc:11:22:33', ip='12.13.14.15', version=0)
To be further documented...
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
yamliz-0.1.2.tar.gz
(5.7 kB
view hashes)
Built Distribution
yamliz-0.1.2-py2.py3-none-any.whl
(13.2 kB
view hashes)
Close
Hashes for yamliz-0.1.2-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | b46a904bce40c058f01a3802dc538b6a4536a0ec03a293947906c8fd0a4142fb |
|
MD5 | 499d5043a02ed7516057d3eab9ada26b |
|
BLAKE2-256 | 92f89ea780d407553017a1120e07dfbb7237e9edd0877b7a78f1afc817b1d34a |