No more boilerplate to check and build a Python object from JSON.
Project description
JSONloader
This module is for you if you're tired of writing boilerplate that:
- builds a straightforward Python object from loaded JSON or similar dict-based data loading (e.g. CSV).
- checks that your input-loaded-JSON has all necessary attributes for your pipeline.
- checks that your input JSON has the right types.
Examples
Main intended usage is through the JSONclass
decorator, example below:
By default we don't check for anything, we just build the object as we received it.
>>> from jsonloader import JSONclass
>>> data = {'a': 'aa', 'b': 'bb', 'c': 1}
>>> @JSONclass
... class Example:
... pass
...
>>> example = Example(data)
>>> example.a
'aa'
>>> example.b
'bb'
We want to ensure we have annotated parameters
>>> from jsonloader import JSONclass
>>> data = {'a': 'aa', 'b': 'bb', 'c': 1}
>>> @JSONclass(annotations=True)
... class Example:
... a: str
... d: int
...
>>> try:
... example = Example(data)
... except KeyError:
... print("error - missing 'd'")
...
error - missing 'd'
>>> data['d'] = 1 # Let's fix the missing data
>>> example = Example(data) # No more error in loading.
We want to ensure we have only annotated parameters
>>> from jsonloader import JSONclass
>>> data = {'a': 'aa', 'b': 'bb', 'c': 1}
>>> @JSONclass(annotations=True, annotations_strict=True)
... class Example:
... a: str
... b: int
...
>>> try:
... example = Example(data)
... except KeyError:
... print("error - extra 'c'")
...
error - extra 'c'
>>> del data['c'] # Let's remove unwanted data
>>> example = Example(data) # No more error in loading.
We want to ensure we have only annotated parameters and they are of annotated type.
>>> from jsonloader import JSONclass
>>> data = {'a': 'aa', 'b': 'bb'}
>>> @JSONclass(annotations_strict=True, annotations_type=True)
... class Example:
... a: str
... b: int
...
>>> try:
... example = Example(data)
... except TypeError:
... print("error - b is not int")
...
error - b is not int
Default values are supported too.
>>> from jsonloader import JSONclass
>>> data = {'a': 'aa'}
>>> @JSONclass(annotations_strict=True, annotations_type=True)
... class Example:
... a: str
... b: int = 1
...
>>> example = Example(data)
>>> example.b
1
A JSONclass can be converted back to a dict, even for recursive structures
>>> from jsonloader import JSONclass
>>> data = {'a': 'aa', 'b':2, 'c': {'foo': 'bar'}}
>>> @JSONclass(annotations_type=True, annotations=True)
... class Example:
... a: str
... b: int
...
>>> example = Example(data)
>>> assert dict(example) == data
Install
User installation
# Recommendation: install jsonloader in your project virtualenv
# Should you not want to use virtualenv or equivalent, it's recommended to use
# '--user' pip option to avoid a system-level install.
pip3 install jsonloader
Developer installation
Github repository currently points to latest development version. Please
jump to latest released version tag if you intend to work on PyPI version.
For example git checkout tags/v0.4.3
.
# These commands assume virtualenv is installed
python3 -m virtualenv venv
. venv/bin/activate
# Actually install the deps
pip3 install -e '.[dev]'
# To setup the project's git hooks:
git config --local core.hooksPath hook
Run Tests
# From this repository top directory
pytest --doctest-modules
Tests coverage
For example, leverage coverage
module:
coverage run -m pytest --doctest-modules
coverage html
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
Built Distribution
File details
Details for the file jsonloader-0.9.1.tar.gz
.
File metadata
- Download URL: jsonloader-0.9.1.tar.gz
- Upload date:
- Size: 8.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e88471a31f2a235c52c504a2e02dac2d2a705e30816e470fc57318b64b2b4ffc |
|
MD5 | 005e10e1c528b8992bd3f76ef85632a3 |
|
BLAKE2b-256 | 2e1dc9a4a3cf9caeb6222f9169f940029472f8833dfc3ee4a047bf53ee4b1510 |
File details
Details for the file jsonloader-0.9.1-py3-none-any.whl
.
File metadata
- Download URL: jsonloader-0.9.1-py3-none-any.whl
- Upload date:
- Size: 7.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1684c31fb458a02578045281e1a2e4d5cd2258160cc3696fb77c3ec3112680bf |
|
MD5 | a1e8e9b0148498147b04f1d8eaf7691f |
|
BLAKE2b-256 | e0afc0754288f23d7e734b5bdc6d15adc95b112f07545eb428ac96766dffc302 |