Skip to main content

fast converter your json to dataclass

Project description

Install

pip install dataclasses_ujson

JSON with DataClasses

The library provides a simple API for decoding JSON to dataclasses. You can use nested dataclasses. The library uses ujson for better performance. There is support for validate simply type: str, int, float, bool, Optional Minimal python version: python 3.7

Examples

from typing import List, Dict
from dataclasses import dataclass
from dataclasses_ujson.dataclasses_ujson import UJsonMixin

json_string = """
{"a": 1, "b": [{"x": 1}, {"x": 2}], "c": {"x": 1}}
"""

@dataclass(frozen=True)
class JsonDict(UJsonMixin):
    x: Dict[str, int]

@dataclass(frozen=True)
class JsonClass(UJsonMixin):
    a: int
    b: List[JsonDict]
    c: Dict[str, int]

data = JsonClass.loads(json_string)

print(data.c["x"])
print(list(data.b)[0].x)

All lists will be returned as generators

from typing import List, Dict
from dataclasses import dataclass
from dataclasses_ujson.dataclasses_ujson import UJsonMixin

json_string = """
[{"x": 1}, {"x": 2}]
"""

@dataclass(frozen=True)
class JsonDict(UJsonMixin):
    x: Dict[str, int]

data = JsonDict.loads(json_string, many=True)

print(data) # generator object UJsonMixin
print(list(data)) # list of JsonDict

Performance:

Libraries were compared:

The script is placed in repository (bench_marks.py):

Name of library Results
json 0.62s
ujson 0.53s
dataclasses-ujson 1.24s (python3.10)
dataclasses-json 21.6s

if generator will be returned (using flag many=true)

Name of library Results
json 0.62s
ujson 0.54s
dataclasses-ujson 0.59s
dataclasses-json -

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

dataclasses_ujson-0.0.13.tar.gz (3.2 kB view details)

Uploaded Source

Built Distribution

dataclasses_ujson-0.0.13-py3-none-any.whl (7.7 kB view details)

Uploaded Python 3

File details

Details for the file dataclasses_ujson-0.0.13.tar.gz.

File metadata

  • Download URL: dataclasses_ujson-0.0.13.tar.gz
  • Upload date:
  • Size: 3.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.23.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.0

File hashes

Hashes for dataclasses_ujson-0.0.13.tar.gz
Algorithm Hash digest
SHA256 a3fed09c57be02825dc0ee3d784d2c2dbc8ea9b9bc463303e9559b8aef6616ad
MD5 8807cd7a2bbc1ddfd49e73bfea45c6c4
BLAKE2b-256 ec07391fac352e1e111bc836973937c26605bba78e0e740c00a7d1c02c522af6

See more details on using hashes here.

File details

Details for the file dataclasses_ujson-0.0.13-py3-none-any.whl.

File metadata

  • Download URL: dataclasses_ujson-0.0.13-py3-none-any.whl
  • Upload date:
  • Size: 7.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.23.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.0

File hashes

Hashes for dataclasses_ujson-0.0.13-py3-none-any.whl
Algorithm Hash digest
SHA256 ac7bc8d463216b8365067cef5dc3acf8ad885aa49eface0341c3c87b2286e478
MD5 b1abe656ec7db41d666516013625764d
BLAKE2b-256 63a98b187b8d7187ee415eb00809ddf953d75139c4d892d1873a8533c40330e2

See more details on using hashes here.

Supported by

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