Scrapy 简明教程
Scrapy - Create a Project
Description
要从网页中获取数据,首先需要创建你将存储代码的 Scrapy 项目。要创建新目录,运行以下命令:
To scrap the data from web pages, first you need to create the Scrapy project where you will be storing the code. To create a new directory, run the following command −
scrapy startproject first_scrapy
上面的代码将创建一个名为 first_scrapy 的目录,它将包含以下结构:
The above code will create a directory with name first_scrapy and it will contain the following structure −
first_scrapy/
scrapy.cfg # deploy configuration file
first_scrapy/ # project's Python module, you'll import your code from here
__init__.py
items.py # project items file
pipelines.py # project pipelines file
settings.py # project settings file
spiders/ # a directory where you'll later put your spiders
__init__.py