]> Raphaƫl G. Git Repositories - youtubedl/blob - devscripts/gh-pages/update-sites.py
Imported Upstream version 2013.10.01
[youtubedl] / devscripts / gh-pages / update-sites.py
1 #!/usr/bin/env python3
2
3 import sys
4 import os
5 import textwrap
6
7 # We must be able to import youtube_dl
8 sys.path.append(os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))))
9
10 import youtube_dl
11
12 def main():
13 with open('supportedsites.html.in', 'r', encoding='utf-8') as tmplf:
14 template = tmplf.read()
15
16 ie_htmls = []
17 for ie in sorted(youtube_dl.gen_extractors(), key=lambda i: i.IE_NAME.lower()):
18 ie_html = '<b>{}</b>'.format(ie.IE_NAME)
19 try:
20 ie_html += ': {}'.format(ie.IE_DESC)
21 except AttributeError:
22 pass
23 if ie.working() == False:
24 ie_html += ' (Currently broken)'
25 ie_htmls.append('<li>{}</li>'.format(ie_html))
26
27 template = template.replace('@SITES@', textwrap.indent('\n'.join(ie_htmls), '\t'))
28
29 with open('supportedsites.html', 'w', encoding='utf-8') as sitesf:
30 sitesf.write(template)
31
32 if __name__ == '__main__':
33 main()