Skip to content

Commit b1dc376

Browse files
committed
Merge branch 'master' of github.com:JaDogg/expressPython
2 parents af62f1f + 278a40c commit b1dc376

1 file changed

Lines changed: 35 additions & 0 deletions

File tree

README.md

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,38 @@ expressPython
33

44
expressPython : 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+
```

0 commit comments

Comments
 (0)