Python开发的网页图片下载工具:crawl-me
crawl-me
crawl-me是一个基于plugin的轻量级快速网页图片下载工具。crawl-me通过简单的命令行就可以用你想要的方式下载各个网站下的图片。目前暂时只支持gamersky(游明星空), pixiv(P站),更多plugin尽请期待,欢迎为它添加新的plugin。
Features
- 支持Http range-headers 并发分段下载,速度更快
- 支持添加plugin自定义新的行为,例如添加对微博的支持
Available plugins
- pixiv : P站图片下载插件,支持下载某P主所有作品
- gamersky : 游明星空图库下载插件,支持下载游民星空图库中的某一个专题的所有图片
Installation
通过git安装
1. Ubuntu下安装
由于代码依赖了pyquery,安装前请确保libxslt-devel libxml2-devel已被安装 sudo apt-get install libxml2-dev sudo apt-get install libxslt1-dev 然后请确保安装了[setuptools](https://pypi.python.org/pypi/setuptools#downloads "setuptools"), Ubuntu下你可以: sudo apt-get install python-setuptools 然后从github clone source到本地 $ git clone https://github.com/nyankosama/crawl-me.git $ cd crawl-me/ $ sudo python setup.py install
2. Windows下安装
首先你需要安装[python2.7](https://www.python.org/download/releases/2.7.7/)和[pip](https://pip.pypa.io/en/latest/installing.html),python2.7可以通过windows installer安装。安装pip首先下载[get-pip.py](https://bootstrap.pypa.io/get-pip.py), 然后执行下面命令。 python get-pip.py 然后,你需要安装pyquery的所依赖的lxml,选择对应的[lxml installer](https://pypi.python.org/pypi/lxml/3.3.5#downloads)下载并安装 最后从github clone 到本地 $ git clone https://github.com/nyankosama/crawl-me.git $ cd crawl-me/ $ sudo python setup.py install 在使用crawl-me之前,请确保把{$python-home}/Scripts/ 加入Windows环境变量中
Usage
Examples
-
下载gamersky下的http://www.gamersky.com/ent/201404/352055.shtml 的第1页到第10页的所有图片到当前目录的gamersky-crawl文件夹下
crawl-me gamersky http://www.gamersky.com/ent/201404/352055.shtml ./gamersky-crawl 1 10
-
一键下载P站藤原桑的所有作品到pixiv-crawl文件夹(藤原桑的id是27517)
crawl-me pixiv 27517 ./pixiv-crawl <your pixiv loginid> <your password>
Command line options
-
general help
$ crawl-me -h usage: crawl-me [-h] plugin positional arguments: plugin plugin the crawler uses optional arguments: -h, --help show this help message and exit available plugins: ----gamersky ----pixiv
-
gamersky
$ crawl-me gamersky -h usage: crawl-me [-h] plugin authorId savePath pixivId password positional arguments: plugin plugin the crawler uses authorId the author id you want to crawl savePath the path where the imgs ars saved pixivId your pixiv login id password your pixiv login password optional arguments: -h, --help show this help message and exit
-
pixiv
$ crawl-me pixiv -h usage: crawl-me [-h] plugin authorId savePath pixivId password positional arguments: plugin plugin the crawler uses authorId the author id you want to crawl savePath the path where the imgs ars saved pixivId your pixiv login id password your pixiv login password optional arguments: -h, --help show this help message and exit
本文由用户 jopen 自行上传分享,仅供网友学习交流。所有权归原作者,若您的权利被侵害,请联系管理员。
转载本站原创文章,请注明出处,并保留原始链接、图片水印。
本站是一个以用户分享为主的开源技术平台,欢迎各类分享!