X-Git-Url: http://git.cielonegro.org/gitweb.cgi?a=blobdiff_plain;f=devscripts%2Fgh-pages%2Fupdate-sites.py;h=531c93c7089c1847a7e9018fcda5ca177f68547e;hb=582be3584761030bfbee13b0c6ea9e6ce2c8a790;hp=4a6bb5e356c7bec65f02219088239319f5685518;hpb=b74e86f48aa6d007b681e2723ff28fe82a49fa9d;p=youtube-dl.git diff --git a/devscripts/gh-pages/update-sites.py b/devscripts/gh-pages/update-sites.py index 4a6bb5e35..531c93c70 100755 --- a/devscripts/gh-pages/update-sites.py +++ b/devscripts/gh-pages/update-sites.py @@ -1,11 +1,12 @@ #!/usr/bin/env python3 +from __future__ import unicode_literals import sys import os import textwrap # We must be able to import youtube_dl -sys.path.append(os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))) +sys.path.insert(0, os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))) import youtube_dl @@ -15,7 +16,7 @@ def main(): template = tmplf.read() ie_htmls = [] - for ie in sorted(youtube_dl.gen_extractors(), key=lambda i: i.IE_NAME.lower()): + for ie in youtube_dl.list_extractors(age_limit=None): ie_html = '{}'.format(ie.IE_NAME) ie_desc = getattr(ie, 'IE_DESC', None) if ie_desc is False: @@ -31,5 +32,6 @@ def main(): with open('supportedsites.html', 'w', encoding='utf-8') as sitesf: sitesf.write(template) + if __name__ == '__main__': main()