]> jfr.im git - yt-dlp.git/blame - yt_dlp/dependencies/__init__.py
[rh:requests] Add handler for `requests` HTTP library (#3668)
[yt-dlp.git] / yt_dlp / dependencies / __init__.py
CommitLineData
9b8ee23b 1# flake8: noqa: F401
1d485a1a 2"""Imports all optional dependencies for the project.
962ffcf8 3An attribute "_yt_dlp__identifier" may be inserted into the module if it uses an ambiguous namespace"""
9b8ee23b 4
5try:
6 import brotlicffi as brotli
7except ImportError:
8 try:
9 import brotli
10 except ImportError:
11 brotli = None
12
13
14try:
15 import certifi
16except ImportError:
17 certifi = None
18else:
19 from os.path import exists as _path_exists
20
21 # The certificate may not be bundled in executable
22 if not _path_exists(certifi.where()):
23 certifi = None
24
25
9b8ee23b 26try:
27 import mutagen
28except ImportError:
29 mutagen = None
30
31
32secretstorage = None
33try:
34 import secretstorage
35 _SECRETSTORAGE_UNAVAILABLE_REASON = None
36except ImportError:
37 _SECRETSTORAGE_UNAVAILABLE_REASON = (
38 'as the `secretstorage` module is not installed. '
39 'Please install by running `python3 -m pip install secretstorage`')
40except Exception as _err:
41 _SECRETSTORAGE_UNAVAILABLE_REASON = f'as the `secretstorage` module could not be initialized. {_err}'
42
43
44try:
45 import sqlite3
35f9a306 46 # We need to get the underlying `sqlite` version, see https://github.com/yt-dlp/yt-dlp/issues/8152
47 sqlite3._yt_dlp__version = sqlite3.sqlite_version
9b8ee23b 48except ImportError:
49 # although sqlite3 is part of the standard library, it is possible to compile python without
50 # sqlite support. See: https://github.com/yt-dlp/yt-dlp/issues/544
51 sqlite3 = None
52
53
54try:
55 import websockets
56except (ImportError, SyntaxError):
57 # websockets 3.10 on python 3.6 causes SyntaxError
58 # See https://github.com/yt-dlp/yt-dlp/issues/2633
59 websockets = None
60
8a8b5452 61try:
62 import urllib3
63except ImportError:
64 urllib3 = None
65
66try:
67 import requests
68except ImportError:
69 requests = None
9b8ee23b 70
6f7563be 71try:
72 import xattr # xattr or pyxattr
73except ImportError:
74 xattr = None
75else:
76 if hasattr(xattr, 'set'): # pyxattr
77 xattr._yt_dlp__identifier = 'pyxattr'
78
79
f6a765ce 80from . import Cryptodome
81
9b8ee23b 82all_dependencies = {k: v for k, v in globals().items() if not k.startswith('_')}
f6a765ce 83available_dependencies = {k: v for k, v in all_dependencies.items() if v}
9b8ee23b 84
85
f6a765ce 86# Deprecated
65f6e807 87Cryptodome_AES = Cryptodome.AES
9b8ee23b 88
89
90__all__ = [
91 'all_dependencies',
92 'available_dependencies',
93 *all_dependencies.keys(),
94]