Convert JSON Schema into Python Class
Project description
json-schema-to-class

Convert JSON Schema into Python Class
Installation
Need Python 3.6+.
pip install json-schema-to-class
Usage
For example, convert tests/test_schema.json into Python class:
# generate & highlight
json-schema-to-class tests/test_schema.json --indent 2 | pygmentize
# or generate to file
json-schema-to-class tests/test_schema.json -o tests/schema_build.py
# generate code with __repr__ method
json-schema-to-class tests/test_schema.json --indent 2 --repr | pygmentize
Get tests/schema_build.py as follow:
from typing import List
class WarmUp:
def __init__(self, values: dict = None):
values = values if values is not None else {}
self.start: float = values.get("start", 0.0)
self.steps: int = values.get("steps", 0)
class LrSchedulerConfig:
def __init__(self, values: dict = None):
values = values if values is not None else {}
self.lr_mode: str = values.get("lr_mode", 'cos')
self.base_lr: float = values.get("base_lr", None)
self.target_lr: float = values.get("target_lr", 0.0002)
self.decay_factor: float = values.get("decay_factor", 0.1)
self.milestones: List[float] = values.get("milestones", [0.3, 0.6, 0.9])
self.lr_decay: float = values.get("lr_decay", 0.98)
self.warm_up = WarmUp(values=values.get("warm_up"))
class LrSchedulerConfigs(list):
def __init__(self, values: list = None):
super().__init__()
values = values if values is not None else []
self[:] = [LrSchedulerConfig(value) for value in values]
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file json-schema-to-class-0.2.4.tar.gz.
File metadata
- Download URL: json-schema-to-class-0.2.4.tar.gz
- Upload date:
- Size: 5.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.6.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
630d80d2594c9610e5ff6c863fc3c1d0a25b2629f03123e9b1c8bf52d15791d0
|
|
| MD5 |
03b14a9f2c8b0dd86925663ed823a8b5
|
|
| BLAKE2b-256 |
6327f53457c74e75d052bc15ed0fe5e89bcd2ddd36d01a2cdaa7f40ef1157f49
|
File details
Details for the file json_schema_to_class-0.2.4-py3.6.egg.
File metadata
- Download URL: json_schema_to_class-0.2.4-py3.6.egg
- Upload date:
- Size: 11.5 kB
- Tags: Egg
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.6.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0c68fff09cd7f505667f51c544964646e3ce35278012e6d0f7724495b4b86c88
|
|
| MD5 |
f1c9882d0d90057faaf40697f6746c49
|
|
| BLAKE2b-256 |
50e53e406d1fa20e05c753e4df2f47e9a1f8cd075747328cf46838d56f339f05
|