Skip to content

Commit 4dec7f0

Browse files
authored
Update README.md
Add translate
1 parent bec659e commit 4dec7f0

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

README.md

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
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+
13
# ParamUI Python
24
- Create App with UI from simple parameter table
35
- Easy code generation using ChatGPT
@@ -26,8 +28,6 @@ Parameter table is containing the following columns
2628

2729
~~~ python
2830
# Hello ParamUI
29-
from paramui import paramui
30-
3131
ParameterTable = [
3232
['A', 'Parameter A', 0.5, [0, 1, 0.1]],
3333
['B', 'Parameter B This is a pen', 200, [100, 500, 10]],
@@ -45,6 +45,7 @@ ParameterTable = [
4545
~~~
4646
## Example 1: Run on UI event
4747
~~~ python
48+
from paramui import paramui
4849
def usrfunc(Prm):
4950
if not Prm.Run:
5051
return
@@ -54,6 +55,8 @@ paramui(ParameterTable, usrfunc)
5455
~~~
5556
## Example 2: Loop & Get Parameters
5657
~~~ python
58+
from paramui import paramui
59+
import time
5760
pu = paramui(ParameterTable)
5861
while pu.IsAlive:
5962
print(pu.Prm)
@@ -66,10 +69,10 @@ while pu.IsAlive:
6669

6770
- [hello_paramui.py](https://github.com/covao/ParamUI/blob/main/example/hello_paramui.py)
6871

69-
# ParamUI Prompt Designer
72+
# [ParamUI Prompt Designer](https://covao.github.io/ParamUI/html/paramui_prompt_designer.html)
7073
- Generate prompt of UI app using LLM
7174
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)
7376

7477
# Demo
7578
- Lifegame

0 commit comments

Comments
 (0)