51 lines
1.2 KiB
Plaintext
51 lines
1.2 KiB
Plaintext
# ==================== Django 核心 ====================
|
||
Django==6.0
|
||
|
||
# ==================== 数据库 ====================
|
||
|
||
mysqlclient==2.2.7
|
||
#pymysql==1.1.0
|
||
# Windows安装mysqlclient可能失败,如果失败用:
|
||
# pip install mysqlclient-2.2.4-cp313-cp313-win_amd64.whl
|
||
|
||
# ==================== REST API & 认证 ====================
|
||
djangorestframework==3.15.2
|
||
djangorestframework-simplejwt==5.3.1
|
||
|
||
# ==================== 跨域支持 ====================
|
||
django-cors-headers==4.4.0
|
||
|
||
# ==================== 异步任务 ====================
|
||
|
||
celery==5.3.6
|
||
redis==5.0.5
|
||
django-celery-results==2.5.1
|
||
django-celery-beat==2.5.0
|
||
|
||
# ==================== 环境变量管理 ====================
|
||
python-decouple==3.8
|
||
|
||
# ==================== 图片处理 ====================
|
||
Pillow>=11.0.0
|
||
|
||
# ==================== 实用工具 ====================
|
||
python-dateutil==2.9.0.post0
|
||
hashids==1.3.1
|
||
pycryptodome==3.20.0
|
||
|
||
# ==================== 开发工具 ====================
|
||
django-extensions==3.2.3
|
||
|
||
# ==================== 代码格式化 ====================
|
||
black==24.8.0
|
||
|
||
# ==================== 微信相关 ====================
|
||
#wechatpay-v3==0.8.8
|
||
requests
|
||
#腾讯云OSS存储桶插件
|
||
cos-python-sdk-v5
|
||
sts-0.0.1
|
||
|
||
#生产环境必备插件
|
||
gunicorn-21.2.0
|
||
gevent-23.9.1 |