luojunhui 1 settimana fa
parent
commit
63e1d99370
1 ha cambiato i file con 27 aggiunte e 17 eliminazioni
  1. 27 17
      requirements.txt

+ 27 - 17
requirements.txt

@@ -1,23 +1,33 @@
-aiomysql~=0.2.0
-aiohttp~=3.10.4
-pydantic~=2.10.6
-pydantic-settings~=2.12.0
-dependency-injector~=4.48.3
-aliyun-log-python-sdk
-tqdm~=4.66.6
+# ── Web 框架 (server) ──
 quart~=0.19.6
 quart~=0.19.6
-hypercorn
+hypercorn>=0.17
 quart-cors~=0.8.0
 quart-cors~=0.8.0
-tenacity~=8.0
-fake-useragent~=1.4
+
+# ── 数据库 ──
+aiomysql>=0.2.0
+asyncpg>=0.29
+
+# ── HTTP / 网络 ──
+aiohttp>=3.9
 requests~=2.31
 requests~=2.31
-aliyun-log-python-sdk
+httpx
+
+# ── 配置 / DI ──
+pydantic>=2.0
+pydantic-settings>=2.0
+dependency-injector>=4.0
+
+# ── 可观测性 ──
+aliyun-log-python-sdk>=0.9
+
+# ── 云服务 SDK ──
+odps~=3.5.1
+volcengine-python-sdk>=1.0
 aliyun-python-sdk-core
 aliyun-python-sdk-core
 aliyun-python-sdk-kms
 aliyun-python-sdk-kms
-odps~=3.5.1
-volcengine-python-sdk
-pyapollos
-tenacity
-fake-useragent
 oss2~=2.19.1
 oss2~=2.19.1
-httpx
+
+# ── 工具 ──
+tenacity>=8.0
+fake-useragent>=1.4
+tqdm>=4.66