JSONSchema Spec with object-oriented paths
Project description
About
JSONSchema Spec with object-oriented paths
Key features
Traverse elements like paths
Access spec on demand with separate dereferencing accessor layer
Installation
$ pip install jsonschema-spec
Alternatively you can download the code and install from the repository:
$ pip install -e git+https://github.com/p1c2u/jsonschema-spec.git#egg=jsonschema_spec
Usage
from jsonschema_spec import Spec
d = {
"openapi": "3.0.1",
"info": {
"$ref": "#/components/Version",
},
"paths": {},
"components": {
"Version": {
"title": "Minimal",
"version": "1.0",
},
},
}
spec = Spec.from_dict(d)
# Concatenate paths with /
info = spec / "info"
# Stat path keys
"title" in info
# Open path dict
with info.open() as info_dict:
print(info_dict)
License
Copyright (c) 2017-2022, Artur Maciag, All rights reserved. Apache v2
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
jsonschema-spec-0.1.2.tar.gz
(10.3 kB
view hashes)
Built Distribution
Close
Hashes for jsonschema_spec-0.1.2-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1e525177574c23ae0f55cd62382632a083a0339928f0ca846a975a4da9851cec |
|
MD5 | 6e5f4217cd6cb6222adf3bf82b2fb94c |
|
BLAKE2b-256 | f0dc3c0cfed493e23bf3c7561b3041b97f90f75ffe364de5d22b9eb9cb3b42a6 |