7 lines
228 B
Python
7 lines
228 B
Python
from src import app as application
|
|
|
|
client = application.app.test_client()
|
|
resp = client.get('/dslrbooth?event_type=session_start¶m1=PrintAndGIF')
|
|
print('Status', resp.status_code)
|
|
print('Data', resp.get_data(as_text=True))
|