| 1234567891011121314151617181920212223242526272829303132333435363738 | #!/usr/bin/env python3from __future__ import unicode_literalsimport sysimport osimport textwrapdirn = os.path.dirname# We must be able to import youtube_dlsys.path.insert(0, dirn(dirn(dirn(os.path.abspath(__file__)))))import youtube_dlfrom devscripts.utils import read_file, write_filedef main():    template = read_file('supportedsites.html.in')    ie_htmls = []    for ie in youtube_dl.list_extractors(age_limit=None):        ie_html = '<b>{}</b>'.format(ie.IE_NAME)        ie_desc = getattr(ie, 'IE_DESC', None)        if ie_desc is False:            continue        elif ie_desc is not None:            ie_html += ': {}'.format(ie.IE_DESC)        if not ie.working():            ie_html += ' (Currently broken)'        ie_htmls.append('<li>{}</li>'.format(ie_html))    template = template.replace('@SITES@', textwrap.indent('\n'.join(ie_htmls), '\t'))    write_file('supportedsites.html', template)if __name__ == '__main__':    main()
 |