Widget Generator for JSON schema
Project description
ipywidgets-jsonschema - A widget generator for your Jupyter notebooks
This project allows you to generate Jupyter widgets from schemas that follow the JSONSchema specification. If you already have a schema available, creating a widget form for it is as simple as this:
from ipywidgets_jsonschema import Form
form = Form(schema)
form.show()
The data can then be retrieved from form
by accessing form.data
.
Features
These are the core features:
- Generation of
ipywidgets
widgets for all basic types - Read and write access to the current document state
Installation
ipywidgets-jsonschema
can be installed with pip:
python -m pip install ipywidgets-jsonschema
Known limitations
- Some aspects of the JSON Schema specification are hard to implement in
a form generator and are therefore omitted e.g.
- The
allOf
andnot
rules for schema composition - Media types
- Conditional subschemas (might be added)
- The
- Some annotations that are purely optional in the specification are required
for the schema to be usable with
ipywidgets-jsonschema
e.g. atitle
field when the resulting widget would otherwise not be self-explanatory.
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
Close
Hashes for ipywidgets_jsonschema-0.7.0.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2763117dfdd29f1370a33af2ece46b4c2a14511059ba224f46b8fe7b1e4edeb0 |
|
MD5 | 72e0c968b5f6397f4135cc21a5efa76b |
|
BLAKE2b-256 | 76a94900097433912e03589b4bd3e3b68ea60080a770c0b27b05d79ccf01694c |