Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 1cf870c0 authored by dalf's avatar dalf
Browse files

[fix] kickass engine : change the hostname to kickass.to (since kickass.so doesn't respond).

Close #197 perhaps not in clean way. Explaination :
In fact 301 responses are followed, except the hook is called for each HTTP response,
the first time for the HTTP 301 response then for HTTP 200 response.
Since the kickass engine excepts a real result, the engine crashes, AND the requests lib stops here.
Add a simple test at the begining of the result function allows pass the first response and handle correctly the second response (the real one)

May be a proper way is to add this test in search.py ?

Code inside requests :
https://github.com/kennethreitz/requests/blob/53d02381e22436b6d0757eb305eb1a960f82d361/requests/sessions.py#L579
and line 591
parent f8a5f7d6
Loading
Loading
Loading
Loading
+4 −1
Original line number Original line Diff line number Diff line
@@ -20,7 +20,7 @@ categories = ['videos', 'music', 'files']
paging = True
paging = True


# search-url
# search-url
url = 'https://kickass.so/'
url = 'https://kickass.to/'
search_url = url + 'search/{search_term}/{pageno}/'
search_url = url + 'search/{search_term}/{pageno}/'


# specific xpath variables
# specific xpath variables
@@ -45,6 +45,9 @@ def request(query, params):
def response(resp):
def response(resp):
    results = []
    results = []


    if resp.is_redirect:
        return results

    dom = html.fromstring(resp.text)
    dom = html.fromstring(resp.text)


    search_res = dom.xpath('//table[@class="data"]//tr')
    search_res = dom.xpath('//table[@class="data"]//tr')