2025-03-23 18:13:13 +08:00
|
|
|
[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"
|
2025-09-26 18:07:57 +08:00
|
|
|
requires-python = ">=3.11"
|
2025-03-23 18:13:13 +08:00
|
|
|
dependencies = [
|
|
|
|
|
"aiofiles~=23.2.1",
|
|
|
|
|
"aiomysql==0.2.0",
|
2025-07-14 03:50:54 +08:00
|
|
|
"aiosqlite>=0.21.0",
|
2025-09-06 04:10:20 +08:00
|
|
|
"alembic>=1.16.5",
|
|
|
|
|
"asyncmy>=0.2.10",
|
2025-09-06 06:08:28 +08:00
|
|
|
"cryptography>=45.0.7",
|
2025-03-23 18:13:13 +08:00
|
|
|
"fastapi==0.110.2",
|
2025-07-31 22:48:02 +08:00
|
|
|
"httpx==0.28.1",
|
2025-03-23 18:13:13 +08:00
|
|
|
"jieba==0.42.1",
|
|
|
|
|
"matplotlib==3.9.0",
|
2025-11-06 10:40:30 +08:00
|
|
|
"motor>=3.3.0",
|
2025-03-23 18:13:13 +08:00
|
|
|
"opencv-python>=4.11.0.86",
|
|
|
|
|
"pandas==2.2.3",
|
|
|
|
|
"parsel==1.9.1",
|
|
|
|
|
"pillow==9.5.0",
|
2025-07-05 21:17:52 +00:00
|
|
|
"playwright==1.45.0",
|
2025-03-23 18:13:13 +08:00
|
|
|
"pydantic==2.5.2",
|
|
|
|
|
"pyexecjs==1.5.1",
|
2025-09-02 18:57:18 +08:00
|
|
|
"pyhumps>=3.8.0",
|
2025-03-23 18:13:13 +08:00
|
|
|
"python-dotenv==1.0.1",
|
|
|
|
|
"redis~=4.6.0",
|
|
|
|
|
"requests==2.32.3",
|
2025-09-06 04:10:20 +08:00
|
|
|
"sqlalchemy>=2.0.43",
|
2025-03-23 18:13:13 +08:00
|
|
|
"tenacity==8.2.2",
|
2025-09-26 17:21:47 +08:00
|
|
|
"typer>=0.12.3",
|
2025-03-23 18:13:13 +08:00
|
|
|
"uvicorn==0.29.0",
|
|
|
|
|
"wordcloud==1.9.3",
|
2025-11-10 18:12:45 +08:00
|
|
|
"xhshow>=0.1.3",
|
2025-03-23 18:13:13 +08:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[tool.uv.index]]
|
2025-07-14 03:50:54 +08:00
|
|
|
url = "https://pypi.tuna.tsinghua.edu.cn/simple"
|
2025-03-23 18:13:13 +08:00
|
|
|
default = true
|