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. You need install dataclasses for python3.6

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.5.tar.gz (3.0 kB view details)

Uploaded Source

Built Distribution

dataclasses_ujson-0.0.5-py3-none-any.whl (7.5 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: dataclasses_ujson-0.0.5.tar.gz
  • Upload date:
  • Size: 3.0 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.5.tar.gz
Algorithm Hash digest
SHA256 d87b30227b45c0f8d333d742090d68f4aa30f8e5ad6d4f808e049b0f64dd87c3
MD5 eeb1e114e531e278cc4e4243cffcc1c9
BLAKE2b-256 fee46d8902a1fcd5416dc2e87a641c95eb05f13c5b84ec8f393870f29529960a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dataclasses_ujson-0.0.5-py3-none-any.whl
  • Upload date:
  • Size: 7.5 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.5-py3-none-any.whl
Algorithm Hash digest
SHA256 cfcfb6d3f9789e0c491a9900789170bdfae7fb11e81a9accde8f10910e45d111
MD5 ce06859f71fd7fc446c43855decc9d0a
BLAKE2b-256 2dd65c3004f6b52365ac6fa1dfe711a8bc769b69832aa0e5e696aff8be8f5562

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