1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2025-10-04 19:36:18 -04:00

[extractor/telegram] Add playlist support and more metadata (#5358)

Authored by: bashonly, bsun0000
This commit is contained in:
bashonly
2022-11-06 19:05:09 +00:00
committed by GitHub
parent cb1553e966
commit 96b9e9cf62
2 changed files with 122 additions and 26 deletions

View File

@@ -3092,8 +3092,8 @@ def escape_url(url):
).geturl()
def parse_qs(url):
return urllib.parse.parse_qs(urllib.parse.urlparse(url).query)
def parse_qs(url, **kwargs):
return urllib.parse.parse_qs(urllib.parse.urlparse(url).query, **kwargs)
def read_batch_urls(batch_fd):