aliosha commited on
Commit
6a170e8
1 Parent(s): 11e6690

first commit

Browse files
Files changed (2) hide show
  1. app.py +8 -0
  2. requirements.txt +2 -0
app.py ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ from flask import Flask, jsonify, render_template, request, send_file
2
+
3
+ app = Flask(__name__)
4
+
5
+
6
+ @app.route("/")
7
+ def index():
8
+ return "nothing yet to see here"
requirements.txt ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ flask
2
+ requests