mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2026-09-15 11:06:47 +00:00
Download Tests / Quick Download Tests (push) Waiting to run
Download Tests / Full Download Tests (ubuntu-latest, 3.10) (push) Waiting to run
Download Tests / Full Download Tests (ubuntu-latest, 3.11) (push) Waiting to run
Download Tests / Full Download Tests (ubuntu-latest, 3.12) (push) Waiting to run
Download Tests / Full Download Tests (ubuntu-latest, 3.13) (push) Waiting to run
Download Tests / Full Download Tests (ubuntu-latest, pypy-3.10) (push) Waiting to run
Download Tests / Full Download Tests (windows-latest, 3.9) (push) Waiting to run
Download Tests / Full Download Tests (windows-latest, pypy-3.10) (push) Waiting to run
Quick Test / Core Test (push) Waiting to run
Quick Test / Code check (push) Waiting to run
Release (master) / release (push) Waiting to run
Release (master) / publish_pypi (push) Blocked by required conditions
Core Tests / Core Tests (ubuntu-latest, 3.10) (push) Has been cancelled
Core Tests / Core Tests (ubuntu-latest, 3.11) (push) Has been cancelled
Core Tests / Core Tests (ubuntu-latest, 3.12) (push) Has been cancelled
Core Tests / Core Tests (ubuntu-latest, 3.13) (push) Has been cancelled
Core Tests / Core Tests (ubuntu-latest, pypy-3.10) (push) Has been cancelled
Core Tests / Core Tests (windows-latest, 3.10) (push) Has been cancelled
Core Tests / Core Tests (windows-latest, 3.12) (push) Has been cancelled
Core Tests / Core Tests (windows-latest, 3.13) (push) Has been cancelled
Core Tests / Core Tests (windows-latest, 3.9) (push) Has been cancelled
Core Tests / Core Tests (windows-latest, pypy-3.10) (push) Has been cancelled
CodeQL / Analyze (python) (push) Has been cancelled
Authored by: doe1080
39 lines
862 B
Python
39 lines
862 B
Python
# flake8: noqa: F401
|
|
import warnings
|
|
|
|
from .common import (
|
|
HEADRequest,
|
|
PATCHRequest,
|
|
PUTRequest,
|
|
Request,
|
|
RequestDirector,
|
|
RequestHandler,
|
|
Response,
|
|
)
|
|
|
|
# isort: split
|
|
# TODO: all request handlers should be safely imported
|
|
from . import _urllib
|
|
from ..utils import bug_reports_message
|
|
|
|
try:
|
|
from . import _requests
|
|
except ImportError:
|
|
pass
|
|
except Exception as e:
|
|
warnings.warn(f'Failed to import "requests" request handler: {e}' + bug_reports_message())
|
|
|
|
try:
|
|
from . import _websockets
|
|
except ImportError:
|
|
pass
|
|
except Exception as e:
|
|
warnings.warn(f'Failed to import "websockets" request handler: {e}' + bug_reports_message())
|
|
|
|
try:
|
|
from . import _curlcffi
|
|
except ImportError:
|
|
pass
|
|
except Exception as e:
|
|
warnings.warn(f'Failed to import "curl_cffi" request handler: {e}' + bug_reports_message())
|