mirror of
https://github.com/soimort/you-get.git
synced 2025-02-13 13:35:20 +03:00
25 lines
461 B
Python
25 lines
461 B
Python
#!/usr/bin/env python
|
|
|
|
import unittest
|
|
|
|
from you_get.extractors import (
|
|
imgur,
|
|
magisto,
|
|
youtube,
|
|
missevan,
|
|
acfun,
|
|
bilibili,
|
|
soundcloud,
|
|
tiktok
|
|
)
|
|
|
|
|
|
class YouGetTests(unittest.TestCase):
|
|
def test_bilibil(self):
|
|
bilibili.download_playlist(
|
|
"https://www.bilibili.com/video/av755179663", playlist=True, info_only=False, output_dir="./tmp", merge=True
|
|
)
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|