]>
Raphaƫl G. Git Repositories - youtubedl/blob - devscripts/gh-pages/update-sites.py
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__
)))))
13 with open('supportedsites.html.in', 'r', encoding
='utf-8') as tmplf
:
14 template
= tmplf
.read()
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
)
20 ie_html
+= ': {}'.format(ie
.IE_DESC
)
21 except AttributeError:
23 if ie
.working() == False:
24 ie_html
+= ' (Currently broken)'
25 ie_htmls
.append('<li>{}</li>'.format(ie_html
))
27 template
= template
.replace('@SITES@', textwrap
.indent('\n'.join(ie_htmls
), '\t'))
29 with open('supportedsites.html', 'w', encoding
='utf-8') as sitesf
:
30 sitesf
.write(template
)
32 if __name__
== '__main__':