Spaces:
Running
Running
File size: 206 Bytes
5a88fe7 | 1 2 3 4 5 6 7 8 | from app import app
if __name__ == '__main__':
with app.test_client() as c:
resp = c.get('/analysis')
print('STATUS:', resp.status_code)
print(resp.data.decode('utf-8'))
|