mirror of
				https://github.com/yt-dlp/yt-dlp.git
				synced 2025-10-30 22:25:19 +00:00 
			
		
		
		
	Completely change project name to yt-dlp (#85)
* All modules and binary names are changed * All documentation references changed * yt-dlp no longer loads youtube-dlc config files * All URLs changed to point to organization account Co-authored-by: Pccode66 Co-authored-by: pukkandan
This commit is contained in:
		| @@ -15,11 +15,11 @@ import io | ||||
|  | ||||
| import xml.etree.ElementTree | ||||
|  | ||||
| import youtube_dlc.YoutubeDL | ||||
| import youtube_dlc.extractor | ||||
| import yt_dlp.YoutubeDL | ||||
| import yt_dlp.extractor | ||||
|  | ||||
|  | ||||
| class YoutubeDL(youtube_dlc.YoutubeDL): | ||||
| class YoutubeDL(yt_dlp.YoutubeDL): | ||||
|     def __init__(self, *args, **kwargs): | ||||
|         super(YoutubeDL, self).__init__(*args, **kwargs) | ||||
|         self.to_stderr = self.to_screen | ||||
| @@ -45,7 +45,7 @@ class TestAnnotations(unittest.TestCase): | ||||
|  | ||||
|     def test_info_json(self): | ||||
|         expected = list(EXPECTED_ANNOTATIONS)  # Two annotations could have the same text. | ||||
|         ie = youtube_dlc.extractor.YoutubeIE() | ||||
|         ie = yt_dlp.extractor.YoutubeIE() | ||||
|         ydl = YoutubeDL(params) | ||||
|         ydl.add_info_extractor(ie) | ||||
|         ydl.download([TEST_ID]) | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Pccode66
					Pccode66