Update requirements.txt
Browse files- requirements.txt +7 -7
requirements.txt
CHANGED
|
@@ -1,21 +1,21 @@
|
|
| 1 |
|
| 2 |
-
fastapi
|
| 3 |
|
| 4 |
# ASGI server (standard extras include websockets, http tools)
|
| 5 |
-
uvicorn[standard]
|
| 6 |
|
| 7 |
# Async HTTP client used by the app
|
| 8 |
aiohttp>=3.8
|
| 9 |
|
| 10 |
# curl-impersonate python binding (used as `from curl_cffi.requests import Session`)
|
| 11 |
-
curl-cffi
|
| 12 |
|
| 13 |
# Fast JSON (optional but recommended; fallback to stdlib if not installed)
|
| 14 |
-
orjson
|
| 15 |
|
| 16 |
# Optional performance/loop + HTTP parser (strongly recommended for production)
|
| 17 |
-
uvloop
|
| 18 |
-
httptools
|
| 19 |
|
| 20 |
# Optional utilities (type helpers on older python versions)
|
| 21 |
-
typing-extensions
|
|
|
|
| 1 |
|
| 2 |
+
fastapi
|
| 3 |
|
| 4 |
# ASGI server (standard extras include websockets, http tools)
|
| 5 |
+
uvicorn[standard]
|
| 6 |
|
| 7 |
# Async HTTP client used by the app
|
| 8 |
aiohttp>=3.8
|
| 9 |
|
| 10 |
# curl-impersonate python binding (used as `from curl_cffi.requests import Session`)
|
| 11 |
+
curl-cffi
|
| 12 |
|
| 13 |
# Fast JSON (optional but recommended; fallback to stdlib if not installed)
|
| 14 |
+
orjson
|
| 15 |
|
| 16 |
# Optional performance/loop + HTTP parser (strongly recommended for production)
|
| 17 |
+
uvloop
|
| 18 |
+
httptools
|
| 19 |
|
| 20 |
# Optional utilities (type helpers on older python versions)
|
| 21 |
+
typing-extensions
|