* Add support for pornstars.tube
* update
- adjust pattern/example/page_url
- extract '' & '' metadata
- prevent unnecessary request
- fix result URLs
- return list comprehension result
* update supportedsites
* update test results
* fix extractor name
---------
Co-authored-by: Mike Fährmann <mike_faehrmann@web.de>
59 lines
1.8 KiB
Python
59 lines
1.8 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 pornstarstube
|
||
|
||
|
||
__tests__ = (
|
||
{
|
||
"#url" : "https://pornstars.tube/albums/40771/cleaning-leads-to-delicious-mess/",
|
||
"#class" : pornstarstube.PornstarstubeGalleryExtractor,
|
||
"#pattern" : r"https://pics\-storage\-1\.pornhat\.com/contents/albums/main/1920x1080/40000/40771/\d+\.jpg",
|
||
"#count" : 100,
|
||
|
||
"count" : 100,
|
||
"num" : range(1, 100),
|
||
"description": "When stepson Brad Sterling decides to help out his stepmom Cali Lee and do a deep clean of the kitchen, he wasn’t expecting her to be so grateful for it. Cali offers to reward him for all his hard work in a much devious way. Who knew that a little bit of cleaning would lead to such messy results!",
|
||
"extension" : "jpg",
|
||
"filename" : r"re:^\d+$",
|
||
"gallery_id" : 40771,
|
||
"slug" : "cleaning-leads-to-delicious-mess",
|
||
"title" : "Cleaning Leads To Delicious Mess",
|
||
"tags" : [
|
||
"blowjob",
|
||
"oral",
|
||
"brunette",
|
||
"teen (18+)",
|
||
"cowgirl",
|
||
"latina",
|
||
"missionary",
|
||
"handjob",
|
||
"babe",
|
||
"standing doggystyle",
|
||
"side fuck",
|
||
"reverse cowgirl",
|
||
"deep throat",
|
||
"kitchen",
|
||
"posing",
|
||
"stripping",
|
||
"firm ass",
|
||
"legs on shoulders",
|
||
"Cali Lee",
|
||
],
|
||
},
|
||
|
||
{
|
||
"#url" : "https://pornstars.tube/albums/40771/cleaning",
|
||
"#class" : pornstarstube.PornstarstubeGalleryExtractor,
|
||
},
|
||
|
||
{
|
||
"#url" : "https://pornstars.tube/albums/40771-O",
|
||
"#class" : pornstarstube.PornstarstubeGalleryExtractor,
|
||
},
|
||
|
||
)
|