Dynamic GUI Generator from JSON Schema
Project description
KoreUI
Dynamic GUI Generator from JSON Schema
Build fully-functional PySide6 interfaces from JSON Schema — including complex features like if/then/else, allOf, dynamic arrays, and real-time validation.
🚀 Features
- 📄 Full support for JSON Schema Draft 2020-12*
- 🧩 Handles
if/then/else,allOf,anyOf,oneOf,$ref, and more - 🧠 Live conditionals — forms change in real-time based on inputs
- 🛠️ Built-in validation with contextual error messages
- 🧪 Ideal for form builders, config tools, admin panels, or low-code platforms
*Soon. Denser schemas may or may not fail- this is being looked into.
📦 Installation
Run the following:
pip install koreui
Requirements:
- Python 3.10+
- PySide6
📦 Installation
pip install koreui
Requirements:
- Python 3.10+
- PySide6
🧑💻 Usage
- Create a JSON schema file (e.g.,
schema.json):
{
"title": "User Profile",
"type": "object",
"properties": {
"name": {
"type": "string",
"title": "Full Name"
}
}
}
- Use KoreUI in your Python code:
from PySide6.QtWidgets import QApplication
from koreui import JsonSchemaForm, load_schema
# Create Qt application
app = QApplication([])
# Load schema and create form
schema = load_schema('schema.json')
form = JsonSchemaForm(schema)
# Show form and run application
form.show()
app.exec()
- Get form data:
# After form is filled out
data = form.get_form_data()
print(data) # Dictionary with form values
🧱 Architecture
src/koreui.py– Core schema resolver, validator, and widget logicsrc/loader.py– A helper script to load a Schema from a JSONapp.py– App entry pointexample_schema.json– Example JSON Schema used to render a dynamic form
📝 License
GNU Affero General Public License v3.0
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 koreui-0.3.0.tar.gz.
File metadata
- Download URL: koreui-0.3.0.tar.gz
- Upload date:
- Size: 31.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.10.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9875b9509257672d4d3d11c389270a04e0a9553cedd9810009b9860935a7420b
|
|
| MD5 |
3f2b7b7182a5051e17722f20b4e8c5cf
|
|
| BLAKE2b-256 |
fcd85784462d2d3fa5a42ae40b110e56addd93e88cef66e802dd530eae970d4d
|
File details
Details for the file koreui-0.3.0-py3-none-any.whl.
File metadata
- Download URL: koreui-0.3.0-py3-none-any.whl
- Upload date:
- Size: 32.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.10.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8c6c80b3949a32253c2280204edc1a206ed2cccfb931e1a5027a07f4773c46dd
|
|
| MD5 |
1f5286e092a599ec8ba818fd7fabd13c
|
|
| BLAKE2b-256 |
5d1fd3beb2d066b6c689d0e0987930ccc70219c8973a2b99eae6611b5c66dc13
|