1
0
mirror of https://github.com/mikf/gallery-dl.git synced 2024-11-22 10:42:34 +01:00
gallery-dl/test/results/lensdump.py
Mike Fährmann c243a7b060
[lensdump] fix extraction (#6313)
- support custom sort orders & query parameters
- rewrite pagination logic
2024-10-24 13:59:39 +02:00

102 lines
2.6 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 lensdump
__tests__ = (
{
"#url" : "https://lensdump.com/a/1IhJr",
"#class" : lensdump.LensdumpAlbumExtractor,
"#pattern" : r"https://[abcd]\.l3n\.co/i/tq\w{4}\.png",
"extension": "png",
"name" : str,
"num" : int,
"title" : str,
"url" : str,
"width" : int,
},
{
"#url" : "https://lensdump.com/a/tA4lA",
"#comment" : "2 pages",
"#class" : lensdump.LensdumpAlbumExtractor,
"#pattern" : r"https://[abcd]\.l3n\.co/i/\w{6}\.(jpe?g|png)",
"#count" : 64,
},
{
"#url" : "https://lensdump.com/vstar925",
"#class" : lensdump.LensdumpAlbumsExtractor,
"#urls" : (
"https://lensdump.com/a/tX1uA",
"https://lensdump.com/a/R0gfK",
"https://lensdump.com/a/RSOMv",
"https://lensdump.com/a/9TbdT",
),
},
{
"#url" : "https://lensdump.com/vstar925/?sort=likes_desc&page=1",
"#comment" : "custom sort order",
"#class" : lensdump.LensdumpAlbumsExtractor,
"#urls" : (
"https://lensdump.com/a/9TbdT",
"https://lensdump.com/a/RSOMv",
"https://lensdump.com/a/R0gfK",
"https://lensdump.com/a/tX1uA",
),
},
{
"#url" : "https://lensdump.com/vstar925/albums",
"#class" : lensdump.LensdumpAlbumsExtractor,
},
{
"#url" : "https://lensdump.com/i/tyoAyM",
"#class" : lensdump.LensdumpImageExtractor,
"#urls" : "https://c.l3n.co/i/tyoAyM.webp",
"#sha1_content": "1aa749ed2c0cf679ec8e1df60068edaf3875de46",
"date" : "dt:2022-08-01 08:24:28",
"extension": "webp",
"filename" : "tyoAyM",
"height" : 400,
"id" : "tyoAyM",
"title" : "MYOBI clovis bookcaseset",
"url" : "https://c.l3n.co/i/tyoAyM.webp",
"width" : 620,
},
{
"#url" : "https://c.l3n.co/i/tyoAyM.webp",
"#class" : lensdump.LensdumpImageExtractor,
"#urls" : "https://c.l3n.co/i/tyoAyM.webp",
"date" : "dt:2022-08-01 08:24:28",
"extension": "webp",
"filename" : "tyoAyM",
"height" : 400,
"id" : "tyoAyM",
"title" : "MYOBI clovis bookcaseset",
"url" : "https://c.l3n.co/i/tyoAyM.webp",
"width" : 620,
},
{
"#url" : "https://i.lensdump.com/i/tyoAyM",
"#class" : lensdump.LensdumpImageExtractor,
},
{
"#url" : "https://i3.lensdump.com/i/tyoAyM",
"#class" : lensdump.LensdumpImageExtractor,
},
)