Skip to main content

Spiff up your dataclasses with extra features.

Project description

PyPI - Version GitHub Actions Workflow Status Coverage Status Read the Docs License: MIT pre-commit

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, while aiming 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

from fancy_dataclass import JSONDataclass

@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


Download files

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

Source Distribution

fancy_dataclass-0.10.2.tar.gz (324.0 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

fancy_dataclass-0.10.2-py3-none-any.whl (83.8 kB view details)

Uploaded Python 3

File details

Details for the file fancy_dataclass-0.10.2.tar.gz.

File metadata

  • Download URL: fancy_dataclass-0.10.2.tar.gz
  • Upload date:
  • Size: 324.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: python-httpx/0.23.3

File hashes

Hashes for fancy_dataclass-0.10.2.tar.gz
Algorithm Hash digest
SHA256 7de1f2c0075042dfc5bf2d1741add5f132877c32e9e8da89342d0c35541e9920
MD5 9078d543d08fe6ef877266675e7f79dc
BLAKE2b-256 ce46d58e23126f4138d06107f34b79b53a543699df777855e662b021d133a765

See more details on using hashes here.

File details

Details for the file fancy_dataclass-0.10.2-py3-none-any.whl.

File metadata

File hashes

Hashes for fancy_dataclass-0.10.2-py3-none-any.whl
Algorithm Hash digest
SHA256 8d4bcccc379866937f211cd993d9ce28cdef1b54b437fb07a7a9bf618d92598b
MD5 6c4b4ac202c8906e4ec8eb7d341b42fc
BLAKE2b-256 76cc163d26760a80fa172f3d86116f70d8c0610ae616537bdcaf8681183bf3d0

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page