[ie/youtube] Add age-gate workaround for some embeddable videos (#11821)
[yt-dlp.git] / yt_dlp / compat / urllib / __init__.py
blob9084b3c2bfd747f2d93a483703895cf5e72bf633
1 # flake8: noqa: F405
2 from urllib import * # noqa: F403
4 del request # noqa: F821
5 from . import request # noqa: F401
7 from ..compat_utils import passthrough_module
9 passthrough_module(__name__, 'urllib')
10 del passthrough_module