fish-scrapy

Author Avatar
Euan 11月 12, 2019
  • 在其它设备中阅读本文章
  • scrapy.cfg: 项目的配置文件
  • hellospider/: 该项目的python模块。之后您将在此加入代码。
  • hellospider/items.py:需要提取的数据结构定义文件。
  • hellospider/middlewares.py: 是和Scrapy的请求/响应处理相关联的框架。
  • hellospider/pipelines.py: 用来对items里面提取的数据做进一步处理,如保存等。
  • hellospider/settings.py: 项目的配置文件。
  • hellospider/spiders/: 放置spider代码的目录

本文使用 CC BY-NC-SA 3.0 中国大陆 协议许可
具体请参见 知识共享协议

本文链接:https://zyhang8.github.io/2019/07/18/Ningbo/