]>
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
) 
  19         ie_desc 
= getattr(ie
, 'IE_DESC', None) 
  22         elif ie_desc 
is not None: 
  23             ie_html 
+= ': {}'.format(ie
.IE_DESC
) 
  24         if ie
.working() == False: 
  25             ie_html 
+= ' (Currently broken)' 
  26         ie_htmls
.append('<li>{}</li>'.format(ie_html
)) 
  28     template 
= template
.replace('@SITES@', textwrap
.indent('\n'.join(ie_htmls
), '\t')) 
  30     with open('supportedsites.html', 'w', encoding
='utf-8') as sitesf
: 
  31         sitesf
.write(template
) 
  33 if __name__ 
== '__main__':