Skip to content

Instantly share code, notes, and snippets.

@MitchyBAwesome
Created July 9, 2018 04:22
Show Gist options
  • Save MitchyBAwesome/e6f111203e0ac3d48eedd30b00f68220 to your computer and use it in GitHub Desktop.
Save MitchyBAwesome/e6f111203e0ac3d48eedd30b00f68220 to your computer and use it in GitHub Desktop.
Simple Python Web Server
from flask import Flask
app = Flask(__name__)
@app.route('/')
def hello_world():
return 'Hello, World from Python!'
if __name__ == '__main__':
app.run(debug=True,host='0.0.0.0',port=8000)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment