johnpaulbin commited on
Commit
17f4a35
·
1 Parent(s): d394ba7

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -0
app.py CHANGED
@@ -10,7 +10,10 @@ import csv
10
  from pathlib import Path
11
  from pprint import pprint
12
  from tqdm import tqdm
 
 
13
 
 
14
 
15
  class Timer:
16
  """Little helper class top measure runtime of async function calls and dump
 
10
  from pathlib import Path
11
  from pprint import pprint
12
  from tqdm import tqdm
13
+ from flask import Flask, request, jsonify
14
+ import asyncio
15
 
16
+ app = Flask(__name__)
17
 
18
  class Timer:
19
  """Little helper class top measure runtime of async function calls and dump