ConstantCoder's picture
Upload app.py
d3536e2 verified
raw
history blame
359 Bytes
#!/usr/bin/env python
# coding: utf-8
# In[1]:
from flask import Flask, send_from_directory
app = Flask(__name__)
@app.route('/')
def index():
return send_from_directory('.', 'index.html')
@app.route('/<path:path>')
def static_files(path):
return send_from_directory('.', path)
if __name__ == '__main__':
app.run(debug=True)
# In[ ]: