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

Commit 805e6f18 authored by asciimoo's avatar asciimoo
Browse files

[enh] paging support for youtube

parent 1fd91bd9
Loading
Loading
Loading
Loading
+6 −2
Original line number Diff line number Diff line
@@ -3,11 +3,15 @@ from urllib import urlencode

categories = ['videos']

search_url = 'https://gdata.youtube.com/feeds/api/videos?alt=json&{query}'
search_url = 'https://gdata.youtube.com/feeds/api/videos?alt=json&{query}&start-index={index}&max-results=25'  # noqa

paging = True


def request(query, params):
    params['url'] = search_url.format(query=urlencode({'q': query}))
    index = (params['pageno'] - 1) * 25 + 1
    params['url'] = search_url.format(query=urlencode({'q': query}),
                                      index=index)
    return params