add yt-dlp version on web

This commit is contained in:
PikuZheng 2025-01-24 18:40:58 +08:00
parent c00246a4f4
commit 8daa59b61f
3 changed files with 26 additions and 2 deletions

View file

@ -12,6 +12,7 @@ import json
import pathlib
from ytdl import DownloadQueueNotifier, DownloadQueue
from yt_dlp.version import __version__ as yt_dlp_version
log = logging.getLogger('main')
@ -231,6 +232,10 @@ def robots(request):
)
return response
@routes.get(config.URL_PREFIX + 'version')
def version(request):
return web.json_response({"version": yt_dlp_version})
if config.URL_PREFIX != '/':
@routes.get('/')
def index_redirect_root(request):