1
+ [ Japanese(Google Translate)] ( https://github-com.translate.goog/covao/ParamUI_MATLAB?_x_tr_sl=en&_x_tr_tl=ja&_x_tr_hl=ja&_x_tr_pto=wapp )
2
+
1
3
# ParamUI Python
2
4
- Create App with UI from simple parameter table
3
5
- Easy code generation using ChatGPT
@@ -26,8 +28,6 @@ Parameter table is containing the following columns
26
28
27
29
~~~ python
28
30
# Hello ParamUI
29
- from paramui import paramui
30
-
31
31
ParameterTable = [
32
32
[' A' , ' Parameter A' , 0.5 , [0 , 1 , 0.1 ]],
33
33
[' B' , ' Parameter B This is a pen' , 200 , [100 , 500 , 10 ]],
@@ -45,6 +45,7 @@ ParameterTable = [
45
45
~~~
46
46
## Example 1: Run on UI event
47
47
~~~ python
48
+ from paramui import paramui
48
49
def usrfunc (Prm ):
49
50
if not Prm.Run:
50
51
return
@@ -54,6 +55,8 @@ paramui(ParameterTable, usrfunc)
54
55
~~~
55
56
## Example 2: Loop & Get Parameters
56
57
~~~ python
58
+ from paramui import paramui
59
+ import time
57
60
pu = paramui(ParameterTable)
58
61
while pu.IsAlive:
59
62
print (pu.Prm)
@@ -66,10 +69,10 @@ while pu.IsAlive:
66
69
67
70
- [ hello_paramui.py] ( https://github.com/covao/ParamUI/blob/main/example/hello_paramui.py )
68
71
69
- # ParamUI Prompt Designer
72
+ # [ ParamUI Prompt Designer] ( https://covao.github.io/ParamUI/html/paramui_prompt_designer.html )
70
73
- Generate prompt of UI app using LLM
71
74
Try prompt! e.g. ChatGPT, Bing Chat, Bard
72
- [ Start Prompt Designer! ] ( https://covao.github.io/ParamUI/html/paramui_prompt_designer.html )
75
+ [ Start ParamUI Prompt Designer] ( https://covao.github.io/ParamUI/html/paramui_prompt_designer.html )
73
76
74
77
# Demo
75
78
- Lifegame
0 commit comments