calgary34 5fb0c46c99
Add Bottle (#1232)
* Create Bottle.py

* increment count

* add to list
2022-01-19 18:11:25 -06:00

8 lines
93 B
Python

from bottle import route, run
@route('/hello')
def hello():
return "Hello World"
run()