mirror of
				https://github.com/yt-dlp/yt-dlp.git
				synced 2025-10-31 06:35:12 +00:00 
			
		
		
		
	 add96eb9f8
			
		
	
	add96eb9f8
	
	
	
		
			
			Authored by: seproDev Reviewed-by: bashonly <88596187+bashonly@users.noreply.github.com> Reviewed-by: Simon Sawicki <contact@grub4k.xyz>
		
			
				
	
	
		
			38 lines
		
	
	
		
			844 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			38 lines
		
	
	
		
			844 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| # flake8: noqa: F401
 | |
| import warnings
 | |
| 
 | |
| from .common import (
 | |
|     HEADRequest,
 | |
|     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())
 |