Created
May 18, 2019 02:24
-
-
Save 97WaterPolo/3bcbb9fb61b50746af11604676924be3 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "IpTorrents", | |
"baseUrl": "https://iptorrents.com", | |
"requireAuthentification": true, | |
"supportCookiesAuthentification": true, | |
"supportCredentialsAuthentification": true, | |
"loginUrl": "/take_login.php", | |
"loginQueryString": "username={username}&password={password}", | |
"searchUrl": "/t?{cat}q={query};o=seeders", | |
"categories": { | |
"All": "", | |
"Movies": "7;68;54;77;20;89;90;96;6;48;62;38;", | |
"TV": "65;" | |
}, | |
"defaultCategory": "All", | |
"resultsPerPageCount": 50, | |
"itemsSelector": "table[id=\"torrents\"] tr:not(:first-child)", | |
"itemSelectors": { | |
"title": "td:nth-child(2) a", | |
"time": "tr:nth-child(2) div.t_ctime | split:%SPECIAL_CHAR%,1 | trim", | |
"downloaded": "td:nth-child(7) | int", | |
"seeds": "td:nth-child(8) | int", | |
"peers": "td:nth-child(9) | int", | |
"size": "td:nth-child(6)", | |
"link": "td:nth-child(4) a@href", | |
"desc": "td:nth-child(2) a@href" | |
}, | |
"paginateSelector": "a:contains(Next)@href", | |
"torrentDetailsSelector": ".desWrap@html" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment