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
|
# SPDX-License-Identifier: MIT
# Copyright (C) 2004-2008 Tristan Seligmann and Jonathan Jacobs
# Copyright (C) 2012-2014 Bastian Kleineidam
# Copyright (C) 2015-2022 Tobias Gruetzmacher
# Copyright (C) 2019-2020 Daniel Ring
from .. import util
from ..helpers import bounceStarter
from ..scraper import ParserScraper
class xkcd(ParserScraper):
url = 'https://xkcd.com/'
stripUrl = url + '%s/'
firstStripUrl = stripUrl % '1'
imageSearch = '//div[@id="comic"]//img'
textSearch = imageSearch + '/@title'
prevSearch = '//a[@rel="prev"]'
nextSearch = '//a[@rel="next"]'
starter = bounceStarter
help = 'Index format: n (unpadded)'
def namer(self, image_url, page_url):
index = int(util.urlpathsplit(page_url)[-1])
name = util.urlpathsplit(image_url)[-1]
return '%04d-%s' % (index, name)
def imageUrlModifier(self, url, data):
if url and '/large/' in data:
return url.replace(".png", "_large.png")
return url
|