1
0
mirror of https://github.com/yt-dlp/yt-dlp synced 2025-07-02 12:02:52 -05:00

[viewster] extract the api auth token

Closes #6406.
This commit is contained in:
remitamine
2015-07-29 23:20:37 +01:00
committed by Jaime Marquínez Ferrándiz
parent 34866b4836
commit 799207e838
3 changed files with 18 additions and 1 deletions

View File

@ -42,6 +42,11 @@ try:
except ImportError: # Python 2
import cookielib as compat_cookiejar
try:
import http.cookies as compat_cookies
except ImportError: # Python 2
import Cookie as compat_cookies
try:
import html.entities as compat_html_entities
except ImportError: # Python 2
@ -436,6 +441,7 @@ __all__ = [
'compat_basestring',
'compat_chr',
'compat_cookiejar',
'compat_cookies',
'compat_expanduser',
'compat_get_terminal_size',
'compat_getenv',