Skip to content

Instantly share code, notes, and snippets.

@Burning-Chai
Created July 6, 2015 00:47
Show Gist options
  • Save Burning-Chai/6ed01cac5fc0489d9c43 to your computer and use it in GitHub Desktop.
Save Burning-Chai/6ed01cac5fc0489d9c43 to your computer and use it in GitHub Desktop.
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from flask import Flask
app = Flask(__name__)
@app.route("/")
def hello():
return "Hello World!"
if __name__ == "__main__":
app.run('0.0.0.0', debug=True)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment