Torrent crawler to get bit torrent from kickass.io and start uTorrent to automatically download
###About
In this project, I have written a Scrapy crawler that uses the get bit torrent from kickass.io and start uTorrent to download any resource automatically. This project demonstrates familiarity with:
-
Scrapy
-
Python, Shell script
-
HTML DOM, xPath selector
Requirements:
├── LICENSE
├── kickass
│ ├── __init__.py
│ ├── __init__.pyc
│ ├── curl_torrent.sh
│ ├── items.py
│ ├── items.pyc
│ ├── pipelines.py
│ ├── pipelines.pyc
│ ├── settings.py
│ ├── settings.pyc
│ └── spiders
│ ├── __init__.py
│ ├── __init__.pyc
│ ├── g.py
│ ├── g.pyc
│ ├── kickassSpider.py
│ └── kickassSpider.pyc
└── scrapy.cfg
-
Install python, scrapy, btc and curl on your computer
-
Run crawler
scrapy crawl -a keywords="<keyword>, <keyword>" -a category="<category>"
For example
scrapy crawl -a keywords="man" -a category="movies"
MIT