mirror of
https://github.com/NanmiCoder/MediaCrawler.git
synced 2026-02-20 05:51:00 +08:00
- 更新 cmd_arg/arg.py 文件,添加SQLite数据库选项的命令行参数解析支持 - 更新 config/base_config.py 文件,集成SQLite数据库的基础配置项和默认设置 - 更新 config/db_config.py 文件,扩展数据库配置以支持SQLite连接和参数管理 - 更新 pyproject.toml 文件,添加SQLite相关依赖包的版本管理和项目配置
34 lines
845 B
TOML
34 lines
845 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",
|
|
"fastapi==0.110.2",
|
|
"httpx==0.24.0",
|
|
"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",
|
|
"python-dotenv==1.0.1",
|
|
"redis~=4.6.0",
|
|
"requests==2.32.3",
|
|
"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
|