Use formily in Jupyter.
pip install jupyter-formilyfrom jupyter_formily import Formily
example = Formily(schema, options, default_value)
example.display()schema can be constructed with Formily Designer or crafted manually.
options allows you to tune the form to fit you need.
default_value allows you to set initial value which follow schema.
options is dict, and key as follow:
| key | Type | Default value |
|---|---|---|
| show_modal | bool | True |
| ok_label | string | "OK" |
| cancel_label | string | "Cancel" |
| ok_props | ISubmitProps | {} |
| cancel_props | ButtonProps | {} |
| form_props | IFormLayoutProps | {} |
| modal_props | ModalProps | {} |
Check demo.ipynb for more information.
Currently custom can not be used via Formily Designer, you have to add them manually. A trick to use custom components is to add a similar component in desinger as placeholder. And then replace it to the component you want by patching the generated schema.
Select file path interactively.
{
"type": "string",
"name": "input_file",
"title": "Input File",
"x-decorator": "FormItem",
"x-component": "FilePicker",
"x-validator": [],
"x-component-props": {
"init_path": "./"
},
"x-decorator-props": {},
"x-designable-id": "8j01zeibhn3",
"x-index": 1
}You need to install dependencies both python and javascript. Please make sure you have installed poetry and yarn.
# python
poetry install
# javascript
cd vendor/formily && yarncd vendor/formily && npm run dev FormilyThen you can check widget in demo.ipynb.
./build.sh