Skip to content

Instantly share code, notes, and snippets.

@yaoandy107
Last active September 22, 2020 05:52
Show Gist options
  • Save yaoandy107/1dc0daf2071aed0448e39100145b1ec3 to your computer and use it in GitHub Desktop.
Save yaoandy107/1dc0daf2071aed0448e39100145b1ec3 to your computer and use it in GitHub Desktop.
from flask import Flask
app = Flask(__name__)
@app.route('/')
def hello_world():
return '❤️測試😊'
if __name__ == '__main__':
app.run('0.0.0.0')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment