From 5dc97c150c4d87a86226561c5f85791426d59dba Mon Sep 17 00:00:00 2001 From: xuenhua Date: Sat, 2 Nov 2024 13:10:30 +0800 Subject: [PATCH] Download Youku video error as bellow: python3 you-get 'https://v.youku.com/v_show/id_XMzE5MzM3MTY4MA==.html' you-get: [error] oops, something went wrong. you-get: don't panic, c'est la vie. please try the following steps: you-get: (1) Rule out any network problem. you-get: (2) Make sure you-get is up-to-date. you-get: (3) Check if the issue is already known, on you-get: https://github.com/soimort/you-get/wiki/Known-Bugs you-get: https://github.com/soimort/you-get/issues you-get: (4) Run the command with '--debug' option, you-get: and report this issue with the full output. --- tests/test.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/tests/test.py b/tests/test.py index 2d220c62..e2c32451 100644 --- a/tests/test.py +++ b/tests/test.py @@ -12,7 +12,8 @@ from you_get.extractors import ( soundcloud, tiktok, twitter, - miaopai + miaopai, + youku ) @@ -69,5 +70,8 @@ class YouGetTests(unittest.TestCase): def test_weibo(self): miaopai.download('https://video.weibo.com/show?fid=1034:4825403706245135', info_only=True) + def test_youku(): + youku.download('https://v.youku.com/v_show/id_XMzE5MzM3MTY4MA==.html', info_only=True) + if __name__ == '__main__': unittest.main()