Skip to content

Commit 26358e5

Browse files
added hello world example
1 parent 7993d0c commit 26358e5

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

app.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
from bottle import route, run
2+
3+
@route('/hello')
4+
def hello():
5+
return "<h1>Hello World</h1>"
6+
7+
run(host='localhost', port=5555, debug=True)

0 commit comments

Comments
 (0)