mirror of
https://github.com/soimort/you-get.git
synced 2025-02-13 13:35:20 +03:00
17 lines
300 B
Python
17 lines
300 B
Python
#!/usr/bin/env python
|
|
|
|
import unittest
|
|
|
|
from you_get.extractors import (
|
|
missevan
|
|
)
|
|
|
|
|
|
class YouGetTests(unittest.TestCase):
|
|
def test_missevan(self):
|
|
missevan.download('https://www.missevan.com/sound/player?id=2853120', info_only=True)
|
|
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|