API-EZTV.it
API-EZTV.it copied to clipboard
(Unofficial) Python API for the torrent website EZTV.it
This hasn't been working for a while. ``` data = { 'SearchString': '', 'SearchString1': name, 'search': 'search' } req = requests.post(URL + "/search/", data=data, timeout=5) self.content = requests.get(req.url, timeout=5).content ```...
Taken from the readme: ``` # get all the seasons from Game Of Thrones seasons = test_api.seasons() for season in seasons: for episode in seasons[season]: # will print the magnet...
https://github.com/davidyen1124/EZTVParser I wrote parsers for all of these page, maybe we can put them together into your repo.
I was reading up on the code and trying to understand it. I added a feature which allows users of the API to get the list of shows on a...