#!/usr/bin/env python | |
# coding: utf-8 | |
# In[1]: | |
from flask import Flask, send_from_directory | |
app = Flask(__name__) | |
def index(): | |
return send_from_directory('.', 'index.html') | |
def static_files(path): | |
return send_from_directory('.', path) | |
if __name__ == '__main__': | |
app.run(debug=True) | |
# In[ ]: | |