diff --git a/README.md b/README.md index d495b18..f67ca56 100644 --- a/README.md +++ b/README.md @@ -1 +1,24 @@ -# pirokit +# Pirokit + +This script is used to web scrape a very popular torrent site 1337x.to to search torrents using bash, and you can represent scrapped torrent data in fzf / dmenu / rofi sort of like menu to select which torrent to download. + +## Installation + +Place this script where you keep your scripts. + +```bash +chmod +x pirokit +``` + +## Usage +``` +pirokit "search query" +``` +or if you use without search query it's by default going to ask take input with dmenu. + + +## Contributing +Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change. + +## License +[MIT](https://choosealicense.com/licenses/mit/) diff --git a/pirokit b/pirokit new file mode 100755 index 0000000..0ce2f9f --- /dev/null +++ b/pirokit @@ -0,0 +1,68 @@ +#!/usr/bin/bash + +mkdir -p $HOME/.cache/pirokit + +if [ -z $1 ]; then + query=$(echo "" | dmenu -p "Search Torrent: ") +else + query=$1 +fi + +baseurl="https://1337x.to" +cachedir="$HOME/.cache/pirokit" +query="$(sed 's/ /+/g' <<<$query)" + +#curl -s https://1337x.to/category-search/$query/Movies/1/ > $cachedir/tmp.html +curl -s https://1337x.to/search/$query/1/ > $cachedir/tmp.html + +# Get Titles +grep -o '' $cachedir/tmp.html | + sed 's/<[^>]*>//g' | sed 'N;s/\n/ /' > $cachedir/seedleech.bw + +# Size +grep -o '