mirror of
https://github.com/LucBerge/yt-dlp.git
synced 2025-03-17 19:57:52 +03:00
parent
5da42f2b9b
commit
a1c5bd82ec
2 changed files with 26 additions and 15 deletions
|
@ -5759,6 +5759,13 @@ def make_archive_id(ie, video_id):
|
|||
return f'{ie_key.lower()} {video_id}'
|
||||
|
||||
|
||||
def truncate_string(s, left, right=0):
|
||||
assert left > 3 and right >= 0
|
||||
if s is None or len(s) <= left + right:
|
||||
return s
|
||||
return f'{s[:left-3]}...{s[-right:]}'
|
||||
|
||||
|
||||
# Deprecated
|
||||
has_certifi = bool(certifi)
|
||||
has_websockets = bool(websockets)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue