Skip to main content

wrapper that sits on top of ipywidgets and other ipy widget libraries to template / automate the creation of widget forms. Uses pydantic to create defined data-container and serialisation to JSON. Includes example patterns for adding new custom widgets.

Project description

ipyautoui

Binder Code style: black PyPI version Test Python Package

Documentation

https://maxfordham.github.io/ipyautoui/

Try it online!

launch Binder.

Installation

pip install ipyautoui
mamba install ipyautoui -c conda-forge  # mamba ... TODO: add to conda-forge.
conda install ipyautoui -c conda-forge  # or conda ... TODO: add to conda-forge.

Intro

A high-level wrapper library that sits on top of ipywidgets (and other ipy- widget libraries), pydantic and Jupyter rich display system to template and automate the creation of widget forms / user-interfaces. The core user-facing classes in this library are AutoUi, AutoVjsf and AutoDisplay:

from ipyautoui import AutoUi, AutoVjsf, AutoDisplay, demo

demo()

demo ipyautoui aims to give you as much as possible out-the-box, whilst also supporting a simple workflow to extend and customise the interface to specific user requirements.

Summary of main features

AutoUi

from pydantic import BaseModel, Field
from ipyautoui import AutoUi

class LineGraph(BaseModel):
    """parameters to define a simple `y=m*x + c` line graph"""
    title: str = Field(default='line equation', description='add chart title')
    m: float = Field(default=2, description='gradient')
    c: float = Field(default=5, ge=0, le=10, description='intercept')
    x_range: tuple[int, int] = Field(
        default=(0,5), ge=0, le=50, description='x-range for chart')
    y_range: tuple[int, int] = Field(
        default=(0,5), ge=0, le=50, description='y-range for chart')

ui = AutoUi(schema=LineGraph)
ui

autoui-linegraph

ui.value  # there is a `value` trait that is always kept in-sync with the widget input form
# {'title': 'line equation',
#  'm': 2,
#  'c': 5,
#  'x_range': (0, 5),
#  'y_range': (0, 5)}

#  methods / stored values
ui.file(path) #  file data to .json file
ui.value #  input form value dict
ui.model #  pydantic model (if given as input, AutoUi can be called from a jsonschema only also)
ui.schema #  jsonschema
AutoUi.create_autoui_renderer #  creates a json-serializable pointer
AutoUi.parse_file #  init ui with data from .json file
  • AutoUi uses pydantic to define the schema of User Input form, and then infers the widget to use based on type and user-directives

  • ipyautoui.custom. provides useful widgets (e.g. iterable) that aren't included within the core ipywidgets library

  • ipyautoui defines a best practice for creating and integrating custom widgets, and as default includes some widgets from other popular widget libraries (e.g. ipydatagrid, ipyfilechooser).

  • ipyautoui handles observing the values, and maintains a stateful and validated .value parameter for the whole user input form.

  • AutoUi also allows the user to specify the usage of ipyvuetify and

    • note. this is the recommended approach for simple and generic input forms. Where custom UI objects are required these can be built using the ipyautoui core library.

AutoVjsf

AutoVjsf works in exactly the same way as AutoUi , but instead of using ipywidgets to render the JSON schema it uses ipyvuetify and vuetify-jsonschema-form.

Should I use AutoUi or AutoVjsf?

AutoVjsf

The excellent documentation for vuetify-jsonschema-form can be used to create your schema. Anything possible in vjsf is therefore possible using AutoVjsf. This has a much more complete coverage of the json-schema specification, as well as the added benefit of out-the-box support of mobile applications. It falls down if you want to specify custom renderer objects.

when you're using pydantic to make the schema, "-" cannot be used field names, 
but vuetify-jsonschema-form requires them (e.g. "x-display"); 
use "x_display" instead and AutoVjsf does the conversion).

AutoUi

The main benefit of AutoUi (and main the reason for continuing to develop it), is that it makes it simple to create custom renderers for specific parts of the json-schema, facilitating the bespoke the requirements of a custom project. See custom-renderers.

AutoDisplay

  • AutoDisplay uses Jupyter's rich display system and large ecosystem of 3rd party packages to create a simple and unified display wrapper to various filetypes.
  • The renderer for a given file is inferred from the file extension.
    • TODO: where the datasource is not a file, the extension is a mapping code that maps a renderer to the datastructure of the data.
  • Custom renderer's can be passed to AutoDisplay allowing it to display user-defined filetypes (or compound extension filetypes)

maplocal

ipyautoui inherits the openpath command from maplocal when it is in use. Refer to maplocal for how to use. maplocal is not a requirement for ipyautoui, but if it is installed the openfile and runcmd functions will be taken from their.

How it works

  • Make a pydantic model (or json schema) that defines the UI
  • Pass the model to AutoUi or AutoVjsf to generate an user-interface
  • Save the UI fields to file
  • Assign a compound-json filetype to the schema and generate AutoDisplay rendererer
  • Use AutoDisplay to display the json file using the AutoUi interface

Dependencies

This package intends to be high-level, and unifies many other ipy- libraries under a simple and familiar API.

It is also obviously wholly dependent on the excellent json-schema specification:

Contributing

{{< include ../CONTRIBUTING.md >}}

Contributions

AutoVjsf is a very thin wrapper where ipyvuetify and vuetify-jsonschema-form are doing all the work. Many thanks to @mariobuikhuizen for providing me with the boiler-plate code. Contributions welcome.

Note: this is a 3rd party that is developed independently of the pydantic.dev company; other than relying heavily on their excellent package (pydantic), it is not affiliated with pydantic.dev in any way.

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

ipyautoui-0.8.2.tar.gz (119.5 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

ipyautoui-0.8.2-py3-none-any.whl (159.1 kB view details)

Uploaded Python 3

File details

Details for the file ipyautoui-0.8.2.tar.gz.

File metadata

  • Download URL: ipyautoui-0.8.2.tar.gz
  • Upload date:
  • Size: 119.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for ipyautoui-0.8.2.tar.gz
Algorithm Hash digest
SHA256 5fb363450cf14d3fad091e260086a48e48c74b70afb3d1fa44e1949e2387258a
MD5 846c1bc0715c582ba593fecb24952b5e
BLAKE2b-256 01fad6b8d3c1652fde9c3e6003f434732227ffc70f5ca61abe2783210249f999

See more details on using hashes here.

Provenance

The following attestation bundles were made for ipyautoui-0.8.2.tar.gz:

Publisher: pypi-publish.yml on maxfordham/ipyautoui

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ipyautoui-0.8.2-py3-none-any.whl.

File metadata

  • Download URL: ipyautoui-0.8.2-py3-none-any.whl
  • Upload date:
  • Size: 159.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for ipyautoui-0.8.2-py3-none-any.whl
Algorithm Hash digest
SHA256 9e61166f98faee255b2b64296f0f7f63338f2cde713923333480b4ec8b4cf23f
MD5 3080fb4b6ba7fb934309f5814f92f56b
BLAKE2b-256 9d7429c8aeff2182193f52387b82593ed2fdbea2d0e938ccb7621488200db22e

See more details on using hashes here.

Provenance

The following attestation bundles were made for ipyautoui-0.8.2-py3-none-any.whl:

Publisher: pypi-publish.yml on maxfordham/ipyautoui

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

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