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(MainConfig, payload)
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.0.1.tar.gz
(11.6 kB
view hashes)
Built Distribution
Close
Hashes for databind.json-1.0.1-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0200cdeaab076674fe85626d596b0cb038e42fb0678265e5a1c09e1475ade80c |
|
MD5 | 94ff66b76fb411cc7ea513738e231140 |
|
BLAKE2b-256 | 9369271db933b247c19c2414efeeedf09343a511863c5655103a63db554fec54 |