diff options
| author | Alexandre Flament <alex@al-f.net> | 2020-07-26 19:33:49 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-07-26 19:33:49 +0200 |
| commit | 6d18769ccf8e0e97479f80dc34547e8c28c61daa (patch) | |
| tree | 3eb7bcd407a35e83dd0b9b0162979e65aad73085 /searx | |
| parent | 9764ef9a5a99d9c0e8645ae253f5b83c8c084910 (diff) | |
| parent | 98cb6b67015ebd3d1676665a786cd0179cfc8784 (diff) | |
Merge pull request #2101 from mikeri/master
Update torrentz2 URL from .eu to .is
Diffstat (limited to 'searx')
| -rw-r--r-- | searx/engines/torrentz.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/searx/engines/torrentz.py b/searx/engines/torrentz.py index fd4164a66..c5e515acf 100644 --- a/searx/engines/torrentz.py +++ b/searx/engines/torrentz.py @@ -1,13 +1,13 @@ """ - Torrentz2.eu (BitTorrent meta-search engine) + Torrentz2.is (BitTorrent meta-search engine) - @website https://torrentz2.eu/ + @website https://torrentz2.is/ @provide-api no @using-api no @results HTML @stable no (HTML can change, although unlikely, - see https://torrentz.eu/torrentz.btsearch) + see https://torrentz.is/torrentz.btsearch) @parse url, title, publishedDate, seed, leech, filesize, magnetlink """ @@ -23,8 +23,8 @@ categories = ['files', 'videos', 'music'] paging = True # search-url -# https://torrentz2.eu/search?f=EXAMPLE&p=6 -base_url = 'https://torrentz2.eu/' +# https://torrentz2.is/search?f=EXAMPLE&p=6 +base_url = 'https://torrentz2.is/' search_url = base_url + 'search?{query}' |