This commit is contained in:
cc
2025-04-15 12:15:27 +02:00
commit 6572754e2a
1871 changed files with 329779 additions and 0 deletions

10
bottle_tut.py Normal file
View File

@@ -0,0 +1,10 @@
from bottle import route, run
@route('/hello')
def hello():
return "Hello World!"
if __name__ == '__main__':
print(dir())
run(host='localhost', port=8080, debug=True)