码迷,mamicode.com
首页 > 其他好文 > 详细

scrapy系列教程二——命令行工具(Command line tools)

时间:2015-08-10 13:28:23      阅读:119      评论:0      收藏:0      [点我收藏+]

标签:

1.命令行工具(Command line tools)

   Scrapy是通过Scrapy命令行工具进行控制的。这里我们称之为 “Scrapy tool” 以用来和子命令进行区分。 对于子命令,我们称为 “command” 或者 “Scrapy commands”。Scrapy tool 针对不同的目的提供了多个命令,每个命令支持不同的参数和选项。

2.常用命令

   官方命令行说明文档 http://scrapy-chs.readthedocs.org/zh_CN/latest/topics/commands.html

  • 查看所有可用的命令 scrapy -h
  • 创建scrapy项目 : scrapy startproject myproject(工程名字)

        接下来,进入到项目目录中: cd myproject

   项目默认目录结构:

       scrapy.cfg
       myproject/
           __init__.py
          items.py
          pipelines.py
          settings.py
          spiders/
              __init__.py
              spider1.py
              spider2.py
               ...
  • 列出所有可用爬虫 : scrapy list
  •  启动一个爬虫:scrapy crawl <spidername>  其中spidernae是在爬虫文件里声明的

  •  scrapy终端 :scrapy shell [url]  这个是常用的,可以验证调试你写的xpath

     scrapy终端官方教程 http://scrapy-chs.readthedocs.org/zh_CN/latest/topics/shell.html

scrapy系列教程二——命令行工具(Command line tools)

标签:

原文地址:http://www.cnblogs.com/ChaosJu/p/4717695.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!