Files
gallery-dl/test/results/nudostar.py
SpiffyChatterbox e0f65be36b [nudostar] add support (#5735 #6556)
* Drafting initial basic extractor layout
* Better debug logging
* Update nudostar.py
    Still tinkering
* Update nudostar.py
    Basic extractor is working. Now starting on Gallery
* Update nudostar.py
    Still a work in progress.
    Got individual posts working, galleries are not.
* Update nudostar.py
* Site now appears working. Added Tests.
* PEP Updates
* PEP - Line Length Updates
* Update nudostar.py
    Resolving PEP8 issues.
* update 'gallery' extractor, rename to 'model'
* update 'image' extractor
* expand tests
* update docs/supportedsites

---------

Co-authored-by: Mike Fährmann <mike_faehrmann@web.de>
2025-06-16 19:21:49 +02:00

54 lines
1.5 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 nudostar
__tests__ = (
{
"#url" : "https://nudostar.tv/models/eva-joys/",
"#class" : nudostar.NudostarModelExtractor,
"#pattern": r"https://nudostar.tv/contents/e/v/eva-joys/1000/eva-joys_\d{4}\.jpg",
"#count" : range(50, 80),
"count" : 54,
"num" : range(1, 54),
"extension" : "jpg",
"filename" : r"re:eva-joys_00\d\d",
"gallery_id" : "eva-joys",
"model" : "eva_joy",
"model_slug" : "eva-joys",
"model_names": [
"eva_joy",
"eva_joys",
],
},
{
"#url" : "https://nl.nudostar.tv/models/eva-joys/",
"#class" : nudostar.NudostarModelExtractor,
},
{
"#url" : "https://nudostar.tv/models/thebigtittiecommittee/148/",
"#class" : nudostar.NudostarImageExtractor,
"#results": "https://nudostar.tv/contents/t/h/thebigtittiecommittee/1000/thebigtittiecommittee_0148.jpg",
"extension" : "jpg",
"filename" : "thebigtittiecommittee_0148",
"gallery_id" : "thebigtittiecommittee",
"num" : 148,
"url" : "https://nudostar.tv/contents/t/h/thebigtittiecommittee/1000/thebigtittiecommittee_0148.jpg",
"model" : "Hari Beavis",
"model_slug" : "thebigtittiecommittee",
"model_names": [
"Hari Beavis",
"Thebigtittiecommittee",
],
},
)