File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -3,3 +3,38 @@ expressPython
33
44expressPython : Express Python, A Small IDE
55
6+ ![ Screenshot] ( http://lookpic.com/O/i2/11/H0H4YIQH.png )
7+
8+ ```
9+ # Full API
10+ # ---------------------------
11+ # get method's have no parameters and others have one
12+ #
13+ # get_input - get input textbox's text
14+ # set_input - set input textbox's text
15+ # get_output - get output textbox's text
16+ # set_output - get output textbox's text
17+ # get_code - get code textbox's text
18+ # set_code - set code textbox's text
19+ # write_output- append to output box
20+ # get_apppath - get exe path
21+
22+ # API Help/Code Sample
23+ # ---------------------------
24+
25+ # get text from input box
26+ # parameters - none
27+ txt = get_input()
28+
29+ # change output box's text
30+ # parameters - string
31+ set_output("")
32+
33+ # append to output box
34+ # does not add a new line
35+ # parameters - string
36+ write_output("Hi You,\n")
37+
38+ # get_apppath() -> get exe path
39+ print ("PyRun.exe is at :", get_apppath())
40+ ```
You can’t perform that action at this time.
0 commit comments