mirror of
https://github.com/alexta69/metube.git
synced 2025-04-04 04:37:39 +03:00
add yt-dlp version on web
This commit is contained in:
parent
c00246a4f4
commit
8daa59b61f
3 changed files with 26 additions and 2 deletions
|
@ -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):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue