hello world; requirements.txt; gitignore
commit
2fe51568e5
@ -0,0 +1 @@
|
|||||||
|
venv/
|
@ -0,0 +1 @@
|
|||||||
|
bottle
|
@ -0,0 +1,7 @@
|
|||||||
|
from bottle import route, run
|
||||||
|
|
||||||
|
@route('/hello')
|
||||||
|
def hello():
|
||||||
|
return "Hello World!"
|
||||||
|
|
||||||
|
run(host='localhost', port=8080, debug=True)
|
@ -0,0 +1,7 @@
|
|||||||
|
from bottle import route, run
|
||||||
|
|
||||||
|
@route('/hello')
|
||||||
|
def hello():
|
||||||
|
return "Hello World!"
|
||||||
|
|
||||||
|
run(host='localhost', port=8080, debug=True)
|
Loading…
Reference in New Issue