]> jfr.im git - yt-dlp.git/blobdiff - devscripts/make_supportedsites.py
[cleanup,build] Cleanup some build-related code
[yt-dlp.git] / devscripts / make_supportedsites.py
index 4c11e25f28d32f3da3ad94e64b575ca349704513..0a0d08f56fa1b80b1f7cce0c4fc0e37481fe5a88 100644 (file)
@@ -1,12 +1,8 @@
 #!/usr/bin/env python3
-from __future__ import unicode_literals
-
-import io
 import optparse
 import os
 import sys
 
-
 # Import yt_dlp
 ROOT_DIR = os.path.join(os.path.dirname(__file__), '..')
 sys.path.insert(0, ROOT_DIR)
@@ -23,12 +19,11 @@ 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'
@@ -41,7 +36,7 @@ def gen_ies_md(ies):
         ' - ' + 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)