11 lines
182 B
Python
11 lines
182 B
Python
from bottle import route, run
|
|
|
|
@route('/hello')
|
|
def hello():
|
|
return "Hello World!"
|
|
|
|
if __name__ == '__main__':
|
|
print(dir())
|
|
run(host='localhost', port=8080, debug=True)
|
|
|