You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
133 B
Python
8 lines
133 B
Python
4 years ago
|
from bottle import route, run
|
||
|
|
||
|
@route('/hello')
|
||
|
def hello():
|
||
|
return "Hello World!"
|
||
|
|
||
|
run(host='localhost', port=8080, debug=True)
|