mirror of
				https://github.com/yt-dlp/yt-dlp.git
				synced 2025-10-30 22:25:19 +00:00 
			
		
		
		
	[compat] Remove more functions
Removing any more will require changes to a large number of extractors
This commit is contained in:
		| @@ -1,11 +1,11 @@ | ||||
| import itertools | ||||
| import json | ||||
| import urllib.parse | ||||
| 
 | ||||
| from .common import InfoExtractor | ||||
| from ..compat import compat_urllib_parse_unquote_plus | ||||
| from ..utils import ( | ||||
|     clean_html, | ||||
|     ExtractorError, | ||||
|     clean_html, | ||||
|     int_or_none, | ||||
|     str_to_int, | ||||
|     url_or_none, | ||||
| @@ -47,8 +47,8 @@ class ChingariBaseIE(InfoExtractor): | ||||
|             'id': id, | ||||
|             'extractor_key': ChingariIE.ie_key(), | ||||
|             'extractor': 'Chingari', | ||||
|             'title': compat_urllib_parse_unquote_plus(clean_html(post_data.get('caption'))), | ||||
|             'description': compat_urllib_parse_unquote_plus(clean_html(post_data.get('caption'))), | ||||
|             'title': urllib.parse.unquote_plus(clean_html(post_data.get('caption'))), | ||||
|             'description': urllib.parse.unquote_plus(clean_html(post_data.get('caption'))), | ||||
|             'duration': media_data.get('duration'), | ||||
|             'thumbnail': url_or_none(thumbnail), | ||||
|             'like_count': post_data.get('likeCount'), | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 pukkandan
					pukkandan