Skip to content

Instantly share code, notes, and snippets.

@EspaceRaspberryFrancais
Last active June 2, 2020 20:11
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 EspaceRaspberryFrancais/af9d3fd0d96beda0087d941f8e5d2ca7 to your computer and use it in GitHub Desktop.
Save EspaceRaspberryFrancais/af9d3fd0d96beda0087d941f8e5d2ca7 to your computer and use it in GitHub Desktop.
from flask import Flask
app = Flask(__name__)
@app.route('/')
def index():
return 'Hello world !'
app.run(debug=True, host='0.0.0.0', port=5000)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment