]> jfr.im git - yt-dlp.git/blame - devscripts/gh-pages/update-sites.py
Completely change project name to yt-dlp (#85)
[yt-dlp.git] / devscripts / gh-pages / update-sites.py
CommitLineData
69100808 1#!/usr/bin/env python3
dcddc10a 2from __future__ import unicode_literals
69100808
JMF
3
4import sys
5import os
6import textwrap
7
7a5c1cfe 8# We must be able to import yt_dlp
95240b80 9sys.path.insert(0, os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))))
69100808 10
7a5c1cfe 11import yt_dlp
69100808 12
5f6a1245 13
69100808
JMF
14def main():
15 with open('supportedsites.html.in', 'r', encoding='utf-8') as tmplf:
16 template = tmplf.read()
17
18 ie_htmls = []
7a5c1cfe 19 for ie in yt_dlp.list_extractors(age_limit=None):
69100808 20 ie_html = '<b>{}</b>'.format(ie.IE_NAME)
4193a453
JMF
21 ie_desc = getattr(ie, 'IE_DESC', None)
22 if ie_desc is False:
23 continue
24 elif ie_desc is not None:
69100808 25 ie_html += ': {}'.format(ie.IE_DESC)
b74e86f4 26 if not ie.working():
69100808
JMF
27 ie_html += ' (Currently broken)'
28 ie_htmls.append('<li>{}</li>'.format(ie_html))
29
30 template = template.replace('@SITES@', textwrap.indent('\n'.join(ie_htmls), '\t'))
31
32 with open('supportedsites.html', 'w', encoding='utf-8') as sitesf:
33 sitesf.write(template)
34
582be358 35
69100808
JMF
36if __name__ == '__main__':
37 main()