From c0527bbdc0388b0802b7af90a54e005b889ce380 Mon Sep 17 00:00:00 2001 From: shengchenyang <15538221825@163.com> Date: Fri, 17 May 2024 22:11:55 +0800 Subject: [PATCH] docs: update project structure description --- docs/intro/tutorial.md | 6 +----- docs/topics/commands.md | 4 ---- 2 files changed, 1 insertion(+), 9 deletions(-) diff --git a/docs/intro/tutorial.md b/docs/intro/tutorial.md index 07e52bb..c4d0620 100644 --- a/docs/intro/tutorial.md +++ b/docs/intro/tutorial.md @@ -35,15 +35,11 @@ DemoSpider/ | | |-- error.log # loguru 日志 error 规则输出文件 | |-- middlewares.py # project middlewares definition file | |-- pipelines.py # project pipelines definition file -| |-- run.py # scrapy 运行文件 -| |-- run.sh # 项目运行 shell,运行以上的 run.py,win 平台不会生成此文件 | |-- settings.py # project settings definition file | |-- spiders # a directory where you'll later put your spiders | | |-- __init__.py | `-- VIT -| `-- .conf # 配置文件,用于修改 Mysql, MongoDB 等配置 -|-- README.md # 说明文档 -|-- requirements.txt # 依赖文件 +| `-- .conf # 配置文件,用于设置 Mysql, MongoDB 等配置 `-- scrapy.cfg # deploy configuration file ``` diff --git a/docs/topics/commands.md b/docs/topics/commands.md index 111fd1e..1c92c38 100644 --- a/docs/topics/commands.md +++ b/docs/topics/commands.md @@ -25,16 +25,12 @@ | | `-- error.log | |-- middlewares.py | |-- pipelines.py -| |-- run.py -| |-- run.sh | |-- settings.py | |-- spiders | | |-- __init__.py | | `-- spider1.py | `-- VIT | `-- .conf -|-- README.md -|-- requirements.txt `-- scrapy.cfg ```