]> jfr.im git - yt-dlp.git/blobdiff - devscripts/show-downloads-statistics.py
[FFmpegMetadataPP] Remove `\0` from metadata
[yt-dlp.git] / devscripts / show-downloads-statistics.py
index e25d2841105e164ec7af6e4b44238a47de261dfd..4855aa7c852480518bf2e60e2de2eb448df21f26 100644 (file)
@@ -1,4 +1,6 @@
-#!/usr/bin/env python
+# Unused
+
+#!/usr/bin/env python3
 from __future__ import unicode_literals
 
 import itertools
 
 sys.path.insert(0, os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
 
-from youtube_dl.compat import (
+from yt_dlp.compat import (
     compat_print,
     compat_urllib_request,
 )
-from youtube_dl.utils import format_bytes
+from yt_dlp.utils import format_bytes
 
 
 def format_size(bytes):
@@ -24,7 +26,7 @@ def format_size(bytes):
 
 for page in itertools.count(1):
     releases = json.loads(compat_urllib_request.urlopen(
-        'https://api.github.com/repos/rg3/youtube-dl/releases?page=%s' % page
+        'https://api.github.com/repos/ytdl-org/youtube-dl/releases?page=%s' % page
     ).read().decode('utf-8'))
 
     if not releases:
@@ -36,9 +38,9 @@ def format_size(bytes):
             asset_name = asset['name']
             total_bytes += asset['download_count'] * asset['size']
             if all(not re.match(p, asset_name) for p in (
-                    r'^youtube-dl$',
-                    r'^youtube-dl-\d{4}\.\d{2}\.\d{2}(?:\.\d+)?\.tar\.gz$',
-                    r'^youtube-dl\.exe$')):
+                    r'^yt-dlp$',
+                    r'^yt-dlp-\d{4}\.\d{2}\.\d{2}(?:\.\d+)?\.tar\.gz$',
+                    r'^yt-dlp\.exe$')):
                 continue
             compat_print(
                 ' %s size: %s downloads: %d'