Skip to content

Commit

Permalink
updata readme
Browse files Browse the repository at this point in the history
  • Loading branch information
raawaa committed Nov 3, 2015
1 parent ee0fb26 commit f5ed62b
Showing 1 changed file with 16 additions and 18 deletions.
34 changes: 16 additions & 18 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,34 +28,32 @@ $ npm link # 使jav-scrapy全局可执行
-V, --version output the version number
-p, --parallel <num> 设置抓取并发连接数,默认值:2
-t, --timeout <num> 自定义连接超时时间(毫秒)。默认值:10000
-l, --limit <num> 设置抓取影片的数量上限,0为抓取全部影片。默认值:0
-o, --output <path> 设置磁链抓取结果的保存位置,默认为当前用户的主目录下的magnets.txt文件
-s, --search <string> 根据关键词抓取磁链,如ipz只抓取ipz开头的番号,ipz-634则只抓取该番号的磁链
-l, --limit <num> 设置抓取影片的数量上限,0为抓取全部影片。默认值:0
-o, --output <path> 设置磁链抓取结果的保存位置,默认为当前用户的主目录下的 magnets.txt 文件
-s, --search <string> 根据关键词抓取磁链,如 ipz 只抓取ipz开头的番号, ipz-634 则只抓取该番号的磁链
-b, --base <url> 设置抓取起始页
-c, --cover <dir> 只下载封面而不抓取磁链,封面保存在目录<dir>中。可配合--output之外的其他选项使用
-c, --cover <dir> 只下载封面而不抓取磁链,封面保存在目录 `<dir>` 中。可配合 `--output` 之外的其他选项使用
```

### Examples

到此为止觉得已经够自己用的了,短期不会再更新了,放几个用例吧:

```bash
# 下载影片封面到~/porn_covers/目录下,图片文件名为番号,并行下载数为 10
$ jav -c ~/porn_covers/ -p 10
# 下载所有影片封面到 /path/to/covers/ 目录下,图片文件名为番号,并行下载数为 10
$ jav -c /path/to/covers/ -p 10

# 抓取 ipz 开头的所有番号的磁链,并保存在 /path/to/magnets.txt 中,并行抓取数 20
$ jav -s ipz -p 20 -o /path/to/magnets.txt

# 抓取 ipz 开头的所有番号的磁链,并保存在~/magnets.txt 中,并行抓取数 20
$ jav -s ipz -p 20 -o ~/magnets.txt
# 抓取 ipz 开头的所有番号的封面,并保存在 /path/to/covers/ 目录中,并行抓取数 20
$ jav -s ipz -p 20 -c /path/to/covers/

# 抓取番号 ipz-634 这部影片的磁链
$ jav -s ipz-634 -o ~/magnet.txt
# 抓取番号 ipz-634 这部影片的磁链保存在 /path/to/magnets.txt 中
$ jav -s ipz-634 -o /path/to/magnets.txt

# 抓取「连裤袜」主题的所有影片磁链...并行数 10
# 抓取「连裤袜」主题的所有影片磁链,保存在 /path/to/magnets.txt 中,并行抓取数 10
$ jav -b http://www.javbus.in/genre/28 -p 10 -o ~/magnets.txt
```

## Todo
## Notes

- ~~让 jav-scrapy 的操作方式更像原生命令行程序~~
- 只抓取某一类型的影片磁链
- 加影片磁链保存至本地数据库
- 增量抓取
- Windows 用户注目,如在 jav-scrapy 目录下直接运行 `jav` 命令可能会报错,可参考 [issue #1](https://github.com/raawaa/jav-scrapy/issues/1)

0 comments on commit f5ed62b

Please sign in to comment.