]> jfr.im git - yt-dlp.git/blame - yt_dlp/dependencies/__init__.py
Update to ytdl-commit-66ab08 (#8128)
[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
46except ImportError:
47 # although sqlite3 is part of the standard library, it is possible to compile python without
48 # sqlite support. See: https://github.com/yt-dlp/yt-dlp/issues/544
49 sqlite3 = None
50
51
52try:
53 import websockets
54except (ImportError, SyntaxError):
55 # websockets 3.10 on python 3.6 causes SyntaxError
56 # See https://github.com/yt-dlp/yt-dlp/issues/2633
57 websockets = None
58
59
6f7563be 60try:
61 import xattr # xattr or pyxattr
62except ImportError:
63 xattr = None
64else:
65 if hasattr(xattr, 'set'): # pyxattr
66 xattr._yt_dlp__identifier = 'pyxattr'
67
68
f6a765ce 69from . import Cryptodome
70
9b8ee23b 71all_dependencies = {k: v for k, v in globals().items() if not k.startswith('_')}
f6a765ce 72available_dependencies = {k: v for k, v in all_dependencies.items() if v}
9b8ee23b 73
74
f6a765ce 75# Deprecated
65f6e807 76Cryptodome_AES = Cryptodome.AES
9b8ee23b 77
78
79__all__ = [
80 'all_dependencies',
81 'available_dependencies',
82 *all_dependencies.keys(),
83]