Tools for generating Python models from JSON Schema documents.
Project description
Statham
statham
is a Python Model Parsing Library for JSON Schema. Read the documentation.
This project includes tools for writing and generating extensible Python classes based on JSON Schema documents.
Example Model Definition
statham
can be used to write JSON Schema documents and their corresponding application-level models in one go:
from typing import List
from statham.schema.elements import Array, Integer, Object, String
from statham.schema.property import Property
class Choice(Object):
choice_text: str = Property(String(maxLength=200), required=True)
votes: int = Property(Integer(default=0))
class Poll(Object):
question: str = Property(String(), required=True)
choices: List[Choice] = Property(Array(Choice), required=True)
Generating python classes
Alternatively, Python models may be generated automatically from an existing schema:
statham --input http://example.com/schema.json
Command-line arguments
Required arguments:
--input INPUT Specify the path to the JSON Schema to be generated.
If the target schema is not at the root of a document, specify the
JSON Pointer in the same format as a JSON Schema `$ref`, e.g.
`--input path/to/document.json#/definitions/schema`
Optional arguments:
--output OUTPUT Output directory or file in which to write the output.
If the provided path is a directory, the command will derive the name
from the input argument. If not passed, the command will write to
stdout.
-h, --help Display this help message and exit.
Installation
This project requires Python 3.6+ and may be installed using pip:
pip install statham-schema
Compatibility
See Compatibility for information regarding the currently supported JSON Schema draft and exceptions.
Development
- Clone the repository:
git clone git@github.com:jacksmith15/statham-schema.git && cd statham-schema
- Initialise git submodules:
git submodule update --init --recursive
- Install the requirements:
pip install -r requirements.txt -r requirements-test.txt
- Run
pre-commit install
- Run the tests:
bash run_test.sh -c -a
This project uses the following QA tools:
- PyTest - for running unit tests.
- PyLint - for enforcing code style.
- MyPy - for static type checking.
- Travis CI - for continuous integration.
- Black - for uniform code formatting.
Documentation is written using Sphinx.
License
This project is distributed under the MIT license.
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
Hashes for statham_schema-0.13.2-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0f6b7b8ee6d997f248053c02f1280478b84f1cd4011ea149937bf25af75813b3 |
|
MD5 | 05a25e4191802165aa16b7442c339367 |
|
BLAKE2b-256 | 41c7d8b5c51000da510423e4eed8bcc65fe27394427db20fc28fdbd4a0c75900 |