TorrentLeech and FileList providers not working

Issue #68 new
Former user created an issue

I've been trying to use this two private providers unsuccessfully until now. They log in correctly, but I think that the parsers to get the torrents are not working properly, because I tried the links in my browser and it works just fine.

17:33:08.233 T:7604 NOTICE: [script.quasar.burst] [filelist] Login successful 17:33:08.233 T:7604 NOTICE: [script.quasar.burst] > FileList search URL: http://filelist.ro/browse.php?search=seal+team+s01e17&&cat=21&searchin=0&sort=0 17:33:08.395 T:9452 NOTICE: [script.quasar.burst] >> RARBG returned 6 results in 3.1 seconds 17:33:08.489 T:4968 NOTICE: [script.quasar.burst] [torrentleech] Login successful 17:33:08.489 T:4968 NOTICE: [script.quasar.burst] > TorrentLeech search URL: https://www.torrentleech.org/torrents/browse/index/query/seal%20team%20s01e17 17:33:08.491 T:8276 NOTICE: [script.quasar.burst] >> EZTV returned 5 results in 3.2 seconds 17:33:09.069 T:1400 NOTICE: [script.quasar.burst] >> 1337x returned 11 results in 3.8 seconds, sending 10 best ones 17:33:09.436 T:4968 NOTICE: [script.quasar.burst] >> TorrentLeech returned 0 results in 4.1 seconds 17:33:09.886 T:7604 NOTICE: [script.quasar.burst] >> FileList returned 0 results in 4.6 seconds

Comments (4)

  1. borconi

    I was having the same issue. The problem is filelist moved to https from http so the parser won't work.

    In the definitions.json use this: "filelist": { "anime_extra": "", "anime_keywords": "{title} {episode}", "anime_query": "24&searchin=0&sort=0", "base_url": "http://filelist.ro/browse.php?search=QUERY&EXTRA&cat=", "color": "FF2E86CA", "general_extra": "", "general_keywords": "{title}", "general_query": "0&searchin=0&sort=0", "language": null, "login_failed": "Login esuat!", "login_object": "{'username': USERNAME, 'password': PASSWORD, 'unlock': '1'}", "login_path": "/takelogin.php", "movie_extra": "", "movie_keywords": "{title} {year}", "movie_query": "4&searchin=0&sort=0", "name": "FileList", "parser": { "infohash": "", "name": "item(tag='a', order=2)", "peers": "item(tag='span', order=10)", "row": "find_all('div', ('class', 'torrentrow'))", "seeds": "item(tag='span', order=9)", "size": "item(tag='span', order=7)", "torrent": "item(tag='a', attribute='href', order=3)" }, "private": true, "season_extra": "", "season_extra2": "", "season_keywords": "{title} Season_{season}", "season_keywords2": "{title} Season{season}", "season_query": "21&searchin=0&sort=0", "separator": "+", "show_query": "21&searchin=0&sort=0", "subpage": true, "tv_extra": "", "tv_extra2": "", "tv_keywords": "{title} s{season:2}e{episode:2}", "tv_keywords2": "" },

    and in burst_override.py remove the "/" from: "/%s...", here:

    FileList

    'filelist': {
        'parser': {
            'torrent': "'/%s' % " + definitions['filelist']['parser']['torrent']
        },
        'movie_query': '19&searchin=0&sort=0'
    },
    

    Then you are good to go.

  2. Sand Bird

    Can someone please post their Torrentleech tracker ? I cant even log in. This cloudhole is making it fail.

  3. Log in to comment