Update app.py
Browse files
app.py
CHANGED
|
@@ -3,9 +3,10 @@ import requests
|
|
| 3 |
import json
|
| 4 |
from io import BytesIO
|
| 5 |
|
| 6 |
-
from
|
| 7 |
import aiohttp
|
| 8 |
|
|
|
|
| 9 |
app = Quart(__name__)
|
| 10 |
|
| 11 |
# Use a dictionary to store the history for each session
|
|
|
|
| 3 |
import json
|
| 4 |
from io import BytesIO
|
| 5 |
|
| 6 |
+
from quart import Quart, render_template, request, jsonify
|
| 7 |
import aiohttp
|
| 8 |
|
| 9 |
+
|
| 10 |
app = Quart(__name__)
|
| 11 |
|
| 12 |
# Use a dictionary to store the history for each session
|