Skip to content

Instantly share code, notes, and snippets.

@pranav1698
Created June 22, 2019 20:10
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 pranav1698/a20a4222c92efd8c95d53408ed55a1a0 to your computer and use it in GitHub Desktop.
Save pranav1698/a20a4222c92efd8c95d53408ed55a1a0 to your computer and use it in GitHub Desktop.
import os
import re
from flask import Flask, render_template
# Initialize the flask application
app = Flask(__name__)
@app.route('/')
def index():
return render_template('index.html')
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