Data Records
URL:
Pypi: https://pypi.org/project/data-records/
Gitlab: https://gitlab.com/mc706/data-records
Description
A class decorator like @dataclass
except only immutable options and type coercion and strict typing. It changes the less than desirable behavior of
1 | from dataclasses import dataclass, field |
to either do what you would expect or fail at initialisation instead of downstream during usage.
1 | from data_records import datarecord |
Technologies:
- Python
- Macro Programming
Setup
1 | $ pip install data-records |