Skip to content

Instantly share code, notes, and snippets.

@maze-runnar
Created May 28, 2020 12:42
Show Gist options
  • Save maze-runnar/4b455b2b2bdb0ba45c744da55dce5160 to your computer and use it in GitHub Desktop.
Save maze-runnar/4b455b2b2bdb0ba45c744da55dce5160 to your computer and use it in GitHub Desktop.
import requests
from flask import Flask, request,render_template
import sys
app = Flask(__name__)
app.config['DEBUG'] = True
// Your view goes here
if __name__ == "__main__":
app.run(debug = True)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment