Skip to content

Commit

Permalink
starter files
Browse files Browse the repository at this point in the history
  • Loading branch information
mateomtb authored Feb 28, 2019
1 parent f7cd9f6 commit 89bd111
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
Binary file added example_report.csv.gz
Binary file not shown.
10 changes: 10 additions & 0 deletions server.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
from flask import Flask
app = Flask(__name__)


@app.route("/")
def output():
return "Output results here."

if __name__ == "__main__":
app.run(debug=True)

0 comments on commit 89bd111

Please sign in to comment.