更新 README

This commit is contained in:
xhy 2025-04-04 20:30:12 +08:00
parent dd77a24b48
commit 65de166821
2 changed files with 15 additions and 1 deletions

View File

@ -2,6 +2,20 @@
## 使用方式
```shell
# WEB 模式,只启动 web 控制台,不启动任何引擎
python main.py --web
# 等价于
python main.py --web-only
# 启动 web 的时候启动引擎
python main.py --web --crawl --evidence --report wap,pc,site
# 这几个选项可以任意组合,例如只启动采集引擎和证据收集引擎
python main.py --web --crawl --evidence
```
```shell
# 采集模式采集指定关键字的URL列表直接存入数据库
python main.py --crawl www.yunzhiju.net

View File

@ -76,4 +76,4 @@ class Reporter:
logger.error(f"参数错误: {mode}")
continue
self.ev.wait(60)
self.ev.wait(10)