1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
# -*- coding: utf-8 -*-
# Copyright 2019-2025 Mike Fährmann
#
# 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.
"""Extractors for https://www.adultempire.com/"""
from .common import GalleryExtractor
from .. import text
class AdultempireGalleryExtractor(GalleryExtractor):
"""Extractor for image galleries from www.adultempire.com"""
category = "adultempire"
root = "https://www.adultempire.com"
pattern = (r"(?:https?://)?(?:www\.)?adult(?:dvd)?empire\.com"
r"(/(\d+)/gallery\.html)")
example = "https://www.adultempire.com/12345/gallery.html"
def __init__(self, match):
GalleryExtractor.__init__(self, match)
self.gallery_id = match[2]
def _init(self):
self.cookies.set("ageConfirmed", "true", domain="www.adultempire.com")
def metadata(self, page):
extr = text.extract_from(page, page.index('<div id="content">'))
return {
"gallery_id": text.parse_int(self.gallery_id),
"title" : text.unescape(extr('title="', '"')),
"studio" : extr(">studio</small>", "<").strip(),
"date" : text.parse_datetime(extr(
">released</small>", "<").strip(), "%m/%d/%Y"),
"actors" : sorted(text.split_html(extr(
'<ul class="item-details item-cast-list ', '</ul>'))[1:]),
}
def images(self, page):
params = {"page": 1}
while True:
urls = list(text.extract_iter(page, 'rel="L"><img src="', '"'))
for url in urls:
yield url.replace("_200.", "_9600."), None
if len(urls) < 24:
return
params["page"] += 1
page = self.request(self.page_url, params=params).text
|