Skip to main content

Tool to generate Python types based on TypedDict from a JSON Schema

Project description

JSON Schema generate Python types

Tools to generate Python types based on TypeDict from a JSON schema

Quick start

install:

python3 -m pip install --user jsonschema-gentype

Convert a JSON schema to a Python file contains the types:

jsonschema-gentype --json-schema=<JSON schema> --python=<destination Python>

Docker

You can also run it with Docker:

docker run --rm --user=$(id --user) --volume=$(pwd):/src camptocamp/jsonschema-gentypes

Config file

You can also write a config file named jsonschema-gentypes.yaml with:

headers: >
  # Automatically generated file from a JSON schema
# Used to correctly format the generated file
callbacks:
  - - black
  - - isort
generate:
  - # JSON schema file path
    source: jsonschema_gentypes/schema.json
    # Python file path
    destination: jsonschema_gentypes/configuration.py
    # The name of the root element
    root_name: Config
    # Argument passed to the API
    api_arguments:
      additional_properties: Only explicit
    # Rename an element
    name_mapping: {}

And just run:

jsonschema-gentype

Validation

This package also provide some validations features for YAML file based on jsonschema.

Additional features:

  • Have the line and columns number in the errors, it the file is loaded with ruamel.yaml.
  • Fill with the default provides in the JSON schema, disabled by default because it have some issue with OneOf and AnyOf.
    import ruamel.yaml
    import pkgutil
    import jsonschema_gentypes.validate

    schema_data = pkgutil.get_data("jsonschema_gentypes", "schema.json")
    with open(filename) as data_file:
        yaml = ruamel.yaml.YAML()  # type: ignore
        data = yaml.load(data_file)
    errors, data = jsonschema_gentypes.validate.validate(filename, data, schema, default)
    if errors:
        print("\n".join(errors))
        sys.exit(1)

Limitations

Requires Python 3.8

See the issues with label "limitation".

Contribute

The code should be formatted with isort and black.

The code should be typed.

The prospector tests should pass.

The code should be tested with pytests.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

jsonschema_gentypes-1.0.0-py3-none-any.whl (17.5 kB view details)

Uploaded Python 3

File details

Details for the file jsonschema_gentypes-1.0.0-py3-none-any.whl.

File metadata

  • Download URL: jsonschema_gentypes-1.0.0-py3-none-any.whl
  • Upload date:
  • Size: 17.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.1 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

File hashes

Hashes for jsonschema_gentypes-1.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 2b1f46852b7cb65246817f2274abbc161423bb51e1b3a25bde40da67ef33add0
MD5 7a6ad79193542a7d0395c91280121c78
BLAKE2b-256 29729119aa63d0bb08d19dfc2d01aa3b51403e3cb4faacc47c3576a5da49dde0

See more details on using hashes here.

Provenance

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page