Files
rfid_/bottle_tut.py
2025-04-15 12:15:27 +02:00

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)