mirror of
https://github.com/NanmiCoder/MediaCrawler.git
synced 2026-02-23 00:20:48 +08:00
- 删除旧的async_db.py和async_sqlite_db.py实现 - 新增SQLAlchemy ORM模型和数据库会话管理 - 统一各平台存储实现到_store_impl.py文件 - 添加数据库初始化功能支持 - 更新.gitignore和pyproject.toml依赖配置 - 优化文件存储路径和命名规范
38 lines
939 B
TOML
38 lines
939 B
TOML
[project]
|
|
name = "mediacrawler"
|
|
author = "程序员阿江-Relakkes <relakkes@gmail.com>"
|
|
version = "0.1.0"
|
|
description = "A social media crawler project, support Xiaohongshu, Weibo, Zhihu, Bilibili, Douyin, BaiduTieBa etc."
|
|
readme = "README.md"
|
|
requires-python = ">=3.9"
|
|
dependencies = [
|
|
"aiofiles~=23.2.1",
|
|
"aiomysql==0.2.0",
|
|
"aiosqlite>=0.21.0",
|
|
"alembic>=1.16.5",
|
|
"asyncmy>=0.2.10",
|
|
"fastapi==0.110.2",
|
|
"httpx==0.28.1",
|
|
"jieba==0.42.1",
|
|
"matplotlib==3.9.0",
|
|
"opencv-python>=4.11.0.86",
|
|
"pandas==2.2.3",
|
|
"parsel==1.9.1",
|
|
"pillow==9.5.0",
|
|
"playwright==1.45.0",
|
|
"pydantic==2.5.2",
|
|
"pyexecjs==1.5.1",
|
|
"pyhumps>=3.8.0",
|
|
"python-dotenv==1.0.1",
|
|
"redis~=4.6.0",
|
|
"requests==2.32.3",
|
|
"sqlalchemy>=2.0.43",
|
|
"tenacity==8.2.2",
|
|
"uvicorn==0.29.0",
|
|
"wordcloud==1.9.3",
|
|
]
|
|
|
|
[[tool.uv.index]]
|
|
url = "https://pypi.tuna.tsinghua.edu.cn/simple"
|
|
default = true
|