mirror of
				https://github.com/yt-dlp/yt-dlp.git
				synced 2025-10-31 06:35:12 +00:00 
			
		
		
		
	[ie, cleanup] No from stdlib imports in extractors (#8978)
				
					
				
			This commit is contained in:
		| @@ -1,7 +1,7 @@ | ||||
| import base64 | ||||
| import datetime | ||||
| import functools | ||||
| import itertools | ||||
| from datetime import datetime | ||||
| 
 | ||||
| from .common import InfoExtractor | ||||
| from ..networking import HEADRequest | ||||
| @@ -70,7 +70,7 @@ class TenPlayIE(InfoExtractor): | ||||
|         username, password = self._get_login_info() | ||||
|         if username is None or password is None: | ||||
|             self.raise_login_required('Your 10play account\'s details must be provided with --username and --password.') | ||||
|         _timestamp = datetime.now().strftime('%Y%m%d000000') | ||||
|         _timestamp = datetime.datetime.now().strftime('%Y%m%d000000') | ||||
|         _auth_header = base64.b64encode(_timestamp.encode('ascii')).decode('ascii') | ||||
|         data = self._download_json('https://10play.com.au/api/user/auth', video_id, 'Getting bearer token', headers={ | ||||
|             'X-Network-Ten-Auth': _auth_header, | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 pukkandan
					pukkandan