Files
gallery-dl/test/results/bilibili.py
camellia2077 084a6d73e0 [bilibili] add support for Live Photo (video) downloads (#8860)
* bilibili: add support for live photo downloads
* fix: resolve flake8 linting errors (whitespace and line length)
* fix: resolve flake8 E302 and W293 linting errors
* fix: resolve flake8 W293 and E302 linting errors

* simplify syntax
* add 'livephoto' option
* add tests
2026-01-10 19:27:34 +01:00

102 lines
3.0 KiB
Python

# -*- coding: utf-8 -*-
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 2 as
# published by the Free Software Foundation.
from gallery_dl.extractor import bilibili
__tests__ = (
{
"#url" : "https://www.bilibili.com/opus/988425412565532689",
"#class": bilibili.BilibiliArticleExtractor,
"#results": (
"http://i0.hdslb.com/bfs/new_dyn/311264c4dcf45261f7d7a7fe451b05b9405279279.png",
"http://i0.hdslb.com/bfs/new_dyn/b60d8bc6996529613d617443a12c0a93405279279.png",
"http://i0.hdslb.com/bfs/new_dyn/d4494543210d9eee5310e11dc62581e4405279279.png",
"http://i0.hdslb.com/bfs/new_dyn/45268e63086b2d99811b2e6490130937405279279.png",
),
"count" : 4,
"detail" : dict,
"extension": "png",
"filename" : str,
"height" : 800,
"id" : "988425412565532689",
"isClient" : False,
"isPreview": False,
"num" : range(1, 4),
"size" : float,
"theme" : str,
"themeMode": "light",
"url" : str,
"username" : "平平出击",
"width" : 800,
},
{
"#url" : "https://www.bilibili.com/opus/977981688469520405",
"#comment": "'module_top' file (#6687)",
"#class" : bilibili.BilibiliArticleExtractor,
"#results": (
"http://i0.hdslb.com/bfs/new_dyn/c74018e8272c56a6c28a1a1dc3c586311242656443.jpg",
),
"count" : 1,
"filename" : "c74018e8272c56a6c28a1a1dc3c586311242656443",
"extension": "jpg",
"width" : 712,
"height" : 1068,
"size" : 115.80999755859375,
"id" : "977981688469520405",
"username" : "诗月饼",
},
{
"#url" : "https://www.bilibili.com/opus/1047501858770255875",
"#comment" : "blocked/paid article (#7880)",
"#class" : bilibili.BilibiliArticleExtractor,
"#count" : 0,
"#log" : """\
1047501858770255875: Blocked Article
乌龙茶专属动态
加入当前UP主的6元档包月充电即可解锁观看\
""",
},
{
"#url" : "https://www.bilibili.com/opus/1154738799821979656",
"#comment": "livephoto (#8860)",
"#class" : bilibili.BilibiliArticleExtractor,
"#results": (
"http://i0.hdslb.com/bfs/new_dyn/live_958a5cffe9177b196ada011867abd0a031968078.jpg",
"https://i0.hdslb.com/bfs/dyn_video/_000003lud8wlka5eq2kxctgfx3fwo3b-1-152111110022.mp4",
),
},
{
"#url" : "https://space.bilibili.com/405279279/article",
"#class" : bilibili.BilibiliUserArticlesExtractor,
"#pattern": bilibili.BilibiliArticleExtractor.pattern,
"#count" : range(50, 100),
},
{
"#url" : "https://space.bilibili.com/405279279/upload/opus",
"#class" : bilibili.BilibiliUserArticlesExtractor,
},
{
"#url" : "https://space.bilibili.com/405279279/dynamic",
"#class" : bilibili.BilibiliUserArticlesExtractor,
},
{
"#url" : "https://space.bilibili.com/405279279/favlist?fid=opus",
"#class" : bilibili.BilibiliUserArticlesFavoriteExtractor,
"#auth" : True,
},
)