dataclass-to-json 1.1.0

Creator: bradpython12

Last updated:

Add to Cart

Description:

dataclasstojson 1.1.0

Dataclass_to_json
Dataclass_to_json is a lightweight and simple library for Converting a dataclass structure to a JSON object. The dataclass_to_json library allows you to retrieve a JSON object representing the class attributes and their types.
Installing Dataclass_to_json
dataclass_to_json in available on PyPI:
python -m pip install dataclass_to_json

Dataclass_to_json officially supports Python 3.7+.
Usage
from dataclass_to_json import dataclass_to_json
from typing import List
import json

class Employee:
name: str
age: int
salary: float
remarks: List[str]

class Entreprise:
name: str
address: str
employees: List[Employee]


json_structure = dataclass_to_json(Entreprise)

print(json.dumps(json_structure, indent= 2))

The output:
{
"name": "str",
"address": "str",
"employees": [
{
"name": "str",
"age": "int",
"salary": "float",
"remarks": [
"str"
]
}
]
}

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Customer Reviews

There are no reviews.