Spiff up your dataclasses with extra features.
Project description
Basics
🤵🏻♂️ Fancy Dataclass: A library to spiff up your dataclasses with extra features.
Introduction
Python 3.7 introduced the dataclasses
module which lets you write "statically typed" classes using the type hinting mechanism.
By inspecting dataclasses' type annotations, it is possible to endow them with special powers that help cut down on boilerplate code in a wide variety of domains, such as:
- JSON/TOML conversion: convert dataclasses to JSON/TOML files and vice versa
- Configuration management: store global configurations and use them anywhere in your program
- SQL persistence: define SQL tables, and save/load objects from a database
- CLI parsing: parse command-line arguments and store their values in a dataclass, then use them to execute your main program logic
- Subprocess calls: generate command-line arguments to be passed to another program
fancy_dataclass
borrows ideas from other excellent libraries such as marshmallow
, pydantic
, and argparse_dataclass
, but it aims to be as lightweight as possible in terms of its dependencies and learning curve.
How to install
pip install fancy-dataclass
Requires Python 3.8 or higher.
Example
Regular dataclass
@dataclass
class Person:
name: str
age: int
height: float
hobbies: list[str]
Fancy dataclass
@dataclass
class Person(JSONDataclass):
name: str
age: int
height: float
hobbies: list[str]
Usage:
>>> person = Person(
name='John Doe',
age=47,
height=71.5,
hobbies=['reading', 'juggling', 'cycling']
)
>>> print(person.to_json_string(indent=2))
{
"name": "John Doe",
"age": 47,
"height": 71.5,
"hobbies": [
"reading",
"juggling",
"cycling"
]
}
Documentation
Read the official documentation here.
The documentation is made with Material for MkDocs and is hosted by Read the Docs.
View the Changelog here.
License
This library is distributed under the terms of the MIT license.
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
Hashes for fancy_dataclass-0.4.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8f5f9f3c7d544ab8e09cf69ea4dd5227f9398b535c2cb2887b54f9f4282eb5f0 |
|
MD5 | 4645556b5e0db0e277ca7df90bb41be1 |
|
BLAKE2b-256 | c69e7a942590ae7897164b5fad12c880c031690c203e8a672cd040c5d4ce1f1a |