Skip to content

Instantly share code, notes, and snippets.

@Jaxmetalmax
Created March 11, 2023 00:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Jaxmetalmax/51e8e3b88f257846e9d1248848e918a0 to your computer and use it in GitHub Desktop.
Save Jaxmetalmax/51e8e3b88f257846e9d1248848e918a0 to your computer and use it in GitHub Desktop.
from bottle import route, run
@route('/hello')
def hello():
return "Hello World!"
run(host='localhost', port=8080, debug=True)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment