diff options
author | pukkandan <pukkandan.ytdlp@gmail.com> | 2022-04-21 00:35:57 +0530 |
---|---|---|
committer | pukkandan <pukkandan.ytdlp@gmail.com> | 2022-04-21 00:48:52 +0530 |
commit | 9b8ee23b99de91f9e463050baddfd76fa6580ad6 (patch) | |
tree | 4e161e06d5f3953b2a0e10b0e60e53cbf8b39ea3 /yt_dlp/compat/_legacy.py | |
parent | 62f6f1cbf253240a026a70538b5b58945563fc90 (diff) | |
download | hypervideo-pre-9b8ee23b99de91f9e463050baddfd76fa6580ad6.tar.lz hypervideo-pre-9b8ee23b99de91f9e463050baddfd76fa6580ad6.tar.xz hypervideo-pre-9b8ee23b99de91f9e463050baddfd76fa6580ad6.zip |
[dependencies] Create module with all dependency imports
Diffstat (limited to 'yt_dlp/compat/_legacy.py')
-rw-r--r-- | yt_dlp/compat/_legacy.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/yt_dlp/compat/_legacy.py b/yt_dlp/compat/_legacy.py index f185b7e2f..ce24760e5 100644 --- a/yt_dlp/compat/_legacy.py +++ b/yt_dlp/compat/_legacy.py @@ -17,6 +17,9 @@ from subprocess import DEVNULL from .asyncio import run as compat_asyncio_run # noqa: F401 from .re import Pattern as compat_Pattern # noqa: F401 from .re import match as compat_Match # noqa: F401 +from ..dependencies import Cryptodome_AES as compat_pycrypto_AES # noqa: F401 +from ..dependencies import brotli as compat_brotli # noqa: F401 +from ..dependencies import websockets as compat_websockets # noqa: F401 # compat_ctypes_WINFUNCTYPE = ctypes.WINFUNCTYPE |