2013-08-31 22:05:59 +09:00
|
|
|
#!/usr/bin/env python3
|
2014-11-27 04:01:20 +09:00
|
|
|
from __future__ import unicode_literals
|
2013-08-31 22:05:59 +09:00
|
|
|
|
|
|
|
import sys
|
|
|
|
import os
|
|
|
|
import textwrap
|
|
|
|
|
2023-07-25 08:22:54 +09:00
|
|
|
dirn = os.path.dirname
|
|
|
|
|
2013-08-31 22:05:59 +09:00
|
|
|
# We must be able to import youtube_dl
|
2023-07-25 08:22:54 +09:00
|
|
|
sys.path.insert(0, dirn(dirn(dirn(os.path.abspath(__file__)))))
|
2013-08-31 22:05:59 +09:00
|
|
|
|
|
|
|
import youtube_dl
|
2023-07-25 08:22:54 +09:00
|
|
|
from devscripts.utils import read_file, write_file
|
2013-08-31 22:05:59 +09:00
|
|
|
|
2014-11-24 04:41:03 +09:00
|
|
|
|
2013-08-31 22:05:59 +09:00
|
|
|
def main():
|
2023-07-25 08:22:54 +09:00
|
|
|
template = read_file('supportedsites.html.in')
|
2013-08-31 22:05:59 +09:00
|
|
|
|
|
|
|
ie_htmls = []
|
2015-01-07 15:41:05 +09:00
|
|
|
for ie in youtube_dl.list_extractors(age_limit=None):
|
2013-08-31 22:05:59 +09:00
|
|
|
ie_html = '<b>{}</b>'.format(ie.IE_NAME)
|
2013-10-10 23:18:02 +09:00
|
|
|
ie_desc = getattr(ie, 'IE_DESC', None)
|
|
|
|
if ie_desc is False:
|
|
|
|
continue
|
|
|
|
elif ie_desc is not None:
|
2013-08-31 22:05:59 +09:00
|
|
|
ie_html += ': {}'.format(ie.IE_DESC)
|
2014-11-24 06:21:46 +09:00
|
|
|
if not ie.working():
|
2013-08-31 22:05:59 +09:00
|
|
|
ie_html += ' (Currently broken)'
|
|
|
|
ie_htmls.append('<li>{}</li>'.format(ie_html))
|
|
|
|
|
|
|
|
template = template.replace('@SITES@', textwrap.indent('\n'.join(ie_htmls), '\t'))
|
|
|
|
|
2023-07-25 08:22:54 +09:00
|
|
|
write_file('supportedsites.html', template)
|
2013-08-31 22:05:59 +09:00
|
|
|
|
2016-11-17 20:42:56 +09:00
|
|
|
|
2013-08-31 22:05:59 +09:00
|
|
|
if __name__ == '__main__':
|
|
|
|
main()
|