De-/serialize Python dataclasses to or from JSON payloads. Compatible with Python 3.7 and newer.
Project description
databind.json
The databind.json
package implements the de-/serialization to or from JSON payloads using
the databind.core
framework.
Quickstart
import databind.json
import dataclasses
@dataclasses.dataclass
class ServerConfig:
host: str
port: int = 8080
@dataclasses.dataclass
class MainConfig:
server: ServerConfig
payload = { 'server': { 'host': '127.0.0.1' } }
config = databind.json.load(payload, MainConfig)
assert config == MainConfig(ServerConfig('127.0.0.1'))
Copyright © 2020 – Niklas Rosenstein
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
databind.json-1.5.2.tar.gz
(9.4 kB
view hashes)
Built Distribution
Close
Hashes for databind.json-1.5.2-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 25680d75b9002bc5dafd49018d508603b885d10c4a339f6618fd970df7d4d743 |
|
MD5 | a144c4b105bce1b7d62089ceebb55050 |
|
BLAKE2b-256 | 3852237a8e3a81cdc11db86d67d290282179d46233fb31a0c212a734f84cb7d9 |