From d7d3237bf94415becac7d88c4a4645623b51fc41 Mon Sep 17 00:00:00 2001 From: zheng zhiwen Date: Mon, 17 Oct 2022 10:05:34 +0800 Subject: [PATCH] test miaopai --- tests/test.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tests/test.py b/tests/test.py index a1c6c076..877b6935 100644 --- a/tests/test.py +++ b/tests/test.py @@ -11,7 +11,8 @@ from you_get.extractors import ( bilibili, soundcloud, tiktok, - twitter + twitter, + miaopai ) @@ -61,6 +62,8 @@ class YouGetTests(unittest.TestCase): def test_twitter(self): twitter.download('https://twitter.com/elonmusk/status/1530516552084234244', info_only=True) + def test_weibo(self): + miaopai.download('https://video.weibo.com/show?fid=1034:4825403706245135', info_only=True) if __name__ == '__main__': unittest.main()