ConstantCoder commited on
Commit
d3536e2
·
verified ·
1 Parent(s): dee5e46

Upload app.py

Browse files
Files changed (1) hide show
  1. app.py +27 -0
app.py ADDED
@@ -0,0 +1,27 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/usr/bin/env python
2
+ # coding: utf-8
3
+
4
+ # In[1]:
5
+
6
+
7
+ from flask import Flask, send_from_directory
8
+
9
+ app = Flask(__name__)
10
+
11
+ @app.route('/')
12
+ def index():
13
+ return send_from_directory('.', 'index.html')
14
+
15
+ @app.route('/<path:path>')
16
+ def static_files(path):
17
+ return send_from_directory('.', path)
18
+
19
+ if __name__ == '__main__':
20
+ app.run(debug=True)
21
+
22
+
23
+ # In[ ]:
24
+
25
+
26
+
27
+