-
Notifications
You must be signed in to change notification settings - Fork 479
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
It requires a post parameter in order to get magnet links
- Loading branch information
Showing
2 changed files
with
4 additions
and
4 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#VERSION: 1.14 | ||
#VERSION: 1.15 | ||
# AUTHORS: nindogo | ||
# CONTRIBUTORS: Diego de las Heras ([email protected]) | ||
|
||
|
@@ -10,7 +10,7 @@ | |
|
||
class eztv(object): | ||
name = "EZTV" | ||
url = 'https://eztv.re' | ||
url = 'https://eztvx.to/' | ||
supported_categories = {'all': 'all', 'tv': 'tv'} | ||
|
||
class MyHtmlParser(HTMLParser): | ||
|
@@ -61,7 +61,7 @@ def handle_endtag(self, tag): | |
|
||
def search(self, what, cat='all'): | ||
query = self.url + '/search/' + what.replace('%20', '-') | ||
eztv_html = retrieve_url(query) | ||
eztv_html = retrieve_url(query, post_data=b"layout=def_wlinks") | ||
|
||
eztv_parser = self.MyHtmlParser(self.url) | ||
eztv_parser.feed(eztv_html) | ||
|
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
eztv: 1.14 | ||
eztv: 1.15 | ||
jackett: 4.0 | ||
limetorrents: 4.7 | ||
piratebay: 3.3 | ||
|