Marshal dataclasses to/from JSON. Use field properties with initial values. Generate a dataclass schema for JSON input.
Reason this release was yanked:
CLI tool was not working
Project description
This library provides a set of simple, yet elegant wizarding tools for interacting with the Python dataclasses module.
Full documentation is at:
Features
Here are the supported features that dataclass-wizard currently provides:
JSON (de)serialization: marshal dataclasses to/from JSON and Python dict objects.
Field properties: support for using properties with default values in dataclass instances.
JSON to Dataclass: generate a dataclass schema for a JSON file or string input.
Usage
Using the built-in JSON marshalling support for dataclasses:
from dataclasses import dataclass, field
from typing import Optional, List, Tuple
from dataclass_wizard import JSONWizard
@dataclass
class MyClass(JSONWizard):
my_str: Optional[str]
is_active_tuple: Tuple[bool, ...]
list_of_int: List[int] = field(default_factory=list)
string = """
{
"my_str": 20,
"ListOfInt": ["1", "2", 3],
"isActiveTuple": ["true", "false", 1, false]
}
"""
c = MyClass.from_json(string)
print(repr(c))
# prints:
# MyClass(my_str='20', is_active_tuple=(True, False, True, False), list_of_int=[1, 2, 3])
print(c.to_json())
# prints:
# {"myStr": "20", "isActiveTuple": [true, false, true, false], "listOfInt": [1, 2, 3]}
… and with the property_wizard, which provides support for field properties with default values in dataclasses:
from dataclasses import dataclass, field
from typing import Union
from typing_extensions import Annotated
from dataclass_wizard import property_wizard
@dataclass
class Vehicle(metaclass=property_wizard):
# Note: The example below uses the default value from the `field` extra in
# the `Annotated` definition; if `wheels` were annotated as a `Union` type,
# it would default to 0, because `int` appears as the first type argument.
#
# Any right-hand value assigned to `wheels` is ignored as it is simply
# re-declared by the property; here it is simply omitted for brevity.
wheels: Annotated[Union[int, str], field(default=4)]
@property
def wheels(self) -> int:
return self._wheels
@wheels.setter
def wheels(self, wheels: Union[int, str]):
self._wheels = int(wheels)
if __name__ == '__main__':
v = Vehicle()
print(v)
# prints:
# Vehicle(wheels=4)
v = Vehicle(wheels=3)
print(v)
# prints:
# Vehicle(wheels=3)
v = Vehicle('6')
print(v)
# prints:
# Vehicle(wheels=6)
assert v.wheels == 6, 'The constructor should use our setter method'
# Confirm that we go through our setter method
v.wheels = '123'
assert v.wheels == 123
… or generate a dataclass schema for JSON input, via the wiz-cli tool:
$ echo '{"myFloat": "1.23", "created_at": "2021-11-17"}' | wiz gs - my_file
# Contents of my_file.py
from dataclasses import dataclass
from datetime import date
from typing import Union
@dataclass
class Data:
"""
Data dataclass
"""
my_float: Union[float, str]
created_at: date
Installing Dataclass Wizard and Supported Versions
The Dataclass Wizard library is available on PyPI:
$ python -m pip install dataclass-wizard
The dataclass-wizard library officially supports Python 3.6 or higher.
JSON Marshalling
JSONSerializable (aliased to JSONWizard) is a Mixin class which provides the following helper methods that are useful for serializing (and loading) a dataclass instance to/from JSON, as defined by the AbstractJSONWizard interface.
Method |
Example |
Description |
---|---|---|
from_json |
item = Product.from_json(string) |
Converts a JSON string to an instance of the dataclass, or a list of the dataclass instances. |
from_list |
list_of_item = Product.from_list(l) |
Converts a Python list object to a list of the dataclass instances. |
from_dict |
item = Product.from_dict(d) |
Converts a Python dict object to an instance of the dataclass. |
to_dict |
d = item.to_dict() |
Converts the dataclass instance to a Python dict object that is JSON serializable. |
to_json |
string = item.to_json() |
Converts the dataclass instance to a JSON string representation. |
Additionally, it adds a default __str__ method to subclasses, which will pretty print the JSON representation of an object; this is quite useful for debugging purposes. Whenever you invoke print(obj) or str(obj), for example, it’ll call this method which will format the dataclass object as a prettified JSON string. If you prefer a __str__ method to not be added, you can pass in str=False when extending from the Mixin class as mentioned here.
Note that the __repr__ method, which is implemented by the dataclass decorator, is also available. To invoke the Python object representation of the dataclass instance, you can instead use repr(obj) or f'{obj!r}'.
To mark a dataclass as being JSON serializable (and de-serializable), simply sub-class from JSONSerializable as shown below. You can also extend from the aliased name JSONWizard, if you prefer to use that instead.
Check out a more complete example of using the JSONSerializable Mixin class.
Field Properties
The Python dataclasses library has some key limitations with how it currently handles properties and default values.
The dataclass-wizard package natively provides support for using field properties with default values in dataclasses. The main use case here is to assign an initial value to the field property, if one is not explicitly passed in via the constructor method.
To use it, simply import the property_wizard helper function, and add it as a metaclass on any dataclass where you would benefit from using field properties with default values. The metaclass also pairs well with the JSONSerializable mixin class.
For more examples and important how-to’s on properties with default values, refer to the Using Field Properties section in the documentation.
Credits
This package was created with Cookiecutter and the rnag/cookiecutter-pypackage project template.
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
File details
Details for the file dataclass-wizard-0.8.0.tar.gz
.
File metadata
- Download URL: dataclass-wizard-0.8.0.tar.gz
- Upload date:
- Size: 80.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.6.3 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 501e5f464af8cb8b5aeed246ff67230b7cfb127f368081e65abe03f4c42df280 |
|
MD5 | 1be8852eb167709a72aef9a5691397b2 |
|
BLAKE2b-256 | 0f0d1c7719368b68b17bcdf0e6852232d9b5fb5ff1a0382165b3372fe09823c9 |
File details
Details for the file dataclass_wizard-0.8.0-py2.py3-none-any.whl
.
File metadata
- Download URL: dataclass_wizard-0.8.0-py2.py3-none-any.whl
- Upload date:
- Size: 47.3 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.6.3 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a1ac1775d8884c692b8eaadaa2924d6b374132496b90a8f04db683d2e006ea14 |
|
MD5 | aa0b3c31d1f1c070cc33ae587bc4b0ae |
|
BLAKE2b-256 | 2274f286a1fd9c4ab67287a0e1e1f267601a2e6a3ec434d5150815bd96a68c51 |