]> jfr.im git - yt-dlp.git/blobdiff - devscripts/make_supportedsites.py
[cleanup] Minor fixes (See desc)
[yt-dlp.git] / devscripts / make_supportedsites.py
index 764795bc5b1e560b033c2e9a0c395cecb10b1242..0403c1ae636ab31ab03c8247226e7a464328361a 100644 (file)
@@ -1,16 +1,11 @@
-#!/usr/bin/env python
-from __future__ import unicode_literals
-
-import io
+#!/usr/bin/env python3
 import optparse
 import os
 import sys
 
+sys.path.insert(0, os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
 
-# Import youtube_dl
-ROOT_DIR = os.path.join(os.path.dirname(__file__), '..')
-sys.path.insert(0, ROOT_DIR)
-import youtube_dl
+import yt_dlp
 
 
 def main():
@@ -23,22 +18,24 @@ def main():
 
     def gen_ies_md(ies):
         for ie in ies:
-            ie_md = '**{0}**'.format(ie.IE_NAME)
-            ie_desc = getattr(ie, 'IE_DESC', None)
-            if ie_desc is False:
+            ie_md = f'**{ie.IE_NAME}**'
+            if ie.IE_DESC is False:
                 continue
-            if ie_desc is not None:
-                ie_md += ': {0}'.format(ie.IE_DESC)
+            if ie.IE_DESC is not None:
+                ie_md += f': {ie.IE_DESC}'
+            search_key = getattr(ie, 'SEARCH_KEY', None)
+            if search_key is not None:
+                ie_md += f'; "{ie.SEARCH_KEY}:" prefix'
             if not ie.working():
                 ie_md += ' (Currently broken)'
             yield ie_md
 
-    ies = sorted(youtube_dl.gen_extractors(), key=lambda i: i.IE_NAME.lower())
+    ies = sorted(yt_dlp.gen_extractors(), key=lambda i: i.IE_NAME.lower())
     out = '# Supported sites\n' + ''.join(
         ' - ' + md + '\n'
         for md in gen_ies_md(ies))
 
-    with io.open(outfile, 'w', encoding='utf-8') as outf:
+    with open(outfile, 'w', encoding='utf-8') as outf:
         outf.write(out)