mirror of
https://github.com/l1ving/youtube-dl
synced 2025-02-10 21:32:54 +08:00
8 lines
196 B
Python
Executable File
8 lines
196 B
Python
Executable File
#!/usr/bin/env python
|
|
import youtube_dl.extractors as ex
|
|
|
|
print('Testing the new IEs module')
|
|
print(ex.gen_extractors())
|
|
print(ex.get_info_extractor('Test'))
|
|
ex.get_info_extractor('Test2').test()
|