mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-02 17:22:31 +01:00
[utils] Add base36 for use in Vidzi
This commit is contained in:
parent
d1e440a4a1
commit
481888294d
@ -2631,5 +2631,9 @@ def base_n(num, n, table):
|
||||
return ret
|
||||
|
||||
|
||||
def base36(num):
|
||||
return base_n(num, 36, '0123456789abcdefghijklmnopqrstuvwxyz')
|
||||
|
||||
|
||||
def base62(num):
|
||||
return base_n(num, 62, '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ')
|
||||
|
Loading…
Reference in New Issue
Block a user