27d28b8eef
The default encoding for source files is UTF-8 since Python 3, so we can drop all encoding headers. While we are at it, just replace them with SPDX headers.
92 lines
3 KiB
Python
92 lines
3 KiB
Python
# SPDX-License-Identifier: MIT
|
|
# Copyright (C) 2004-2008 Tristan Seligmann and Jonathan Jacobs
|
|
# Copyright (C) 2012-2014 Bastian Kleineidam
|
|
# Copyright (C) 2015-2020 Tobias Gruetzmacher
|
|
# Copyright (C) 2019-2020 Daniel Ring
|
|
from re import compile
|
|
|
|
from ..scraper import _BasicScraper, _ParserScraper
|
|
from ..helpers import bounceStarter, indirectStarter, xpath_class
|
|
from ..util import tagre
|
|
|
|
|
|
class Vexxarr(_ParserScraper):
|
|
baseUrl = 'http://www.vexxarr.com/'
|
|
url = baseUrl + 'Index.php'
|
|
stripUrl = baseUrl + 'archive.php?seldate=%s'
|
|
firstStripUrl = stripUrl % '010105'
|
|
imageSearch = '//p/img'
|
|
prevSearch = '//a[./img[contains(@src, "previous")]]'
|
|
nextSearch = '//a[./img[contains(@src, "next")]]'
|
|
starter = bounceStarter
|
|
|
|
def namer(self, imageUrl, pageUrl):
|
|
page = pageUrl.rsplit('=', 1)[-1]
|
|
return '20%s-%s-%s' % (page[4:6], page[0:2], page[2:4])
|
|
|
|
|
|
class VGCats(_BasicScraper):
|
|
url = 'http://www.vgcats.com/comics/'
|
|
stripUrl = url + '?strip_id=%s'
|
|
firstStripUrl = stripUrl % '0'
|
|
imageSearch = compile(tagre("img", "src", r'(images/\d{6}\.[^"]+)'))
|
|
prevSearch = compile(tagre("a", "href", r'(\?strip_id=\d+)') +
|
|
tagre("img", "src", r"back\.gif"))
|
|
help = 'Index format: n (unpadded)'
|
|
|
|
|
|
class VGCatsAdventure(VGCats):
|
|
name = 'VGCats/Adventure'
|
|
url = 'http://www.vgcats.com/ffxi/'
|
|
stripUrl = url + '?strip_id=%s'
|
|
|
|
|
|
class VGCatsSuper(VGCats):
|
|
name = 'VGCats/Super'
|
|
url = 'http://www.vgcats.com/super/'
|
|
stripUrl = url + '?strip_id=%s'
|
|
|
|
|
|
class VickiFox(_ParserScraper):
|
|
url = 'http://www.vickifox.com/comic/strip'
|
|
stripUrl = url + '?id=%s'
|
|
firstStripUrl = stripUrl % '001'
|
|
imageSearch = '//img[contains(@src, "comic/")]'
|
|
prevSearch = '//button[@id="btnPrev"]/@value'
|
|
|
|
def getPrevUrl(self, url, data):
|
|
return self.stripUrl % self.getPage(url).xpath(self.prevSearch)[0]
|
|
|
|
|
|
class VictimsOfTheSystem(_BasicScraper):
|
|
url = 'http://www.votscomic.com/'
|
|
stripUrl = url + '?id=%s.jpg'
|
|
firstStripUrl = stripUrl % '070103-002452'
|
|
imageSearch = compile(tagre("img", "src", r'(comicpro/strips/[^"]+)'))
|
|
prevSearch = compile(tagre("a", "href", r'(\?id=\d+-\d+\.jpg)') +
|
|
"Previous")
|
|
help = 'Index format: nnn-nnn'
|
|
|
|
|
|
class ViiviJaWagner(_ParserScraper):
|
|
url = 'http://www.hs.fi/viivijawagner/'
|
|
imageSearch = '//meta[@property="og:image"]/@content'
|
|
prevSearch = '//a[%s]' % xpath_class('prev')
|
|
latestSearch = '//div[%s]//a' % xpath_class('cartoon-content')
|
|
starter = indirectStarter
|
|
lang = 'fi'
|
|
|
|
def namer(self, image_url, page_url):
|
|
return page_url.rsplit('-', 1)[1].split('.')[0]
|
|
|
|
|
|
class VirmirWorld(_ParserScraper):
|
|
url = 'http://world.virmir.com/'
|
|
stripUrl = url + 'comic.php?story=%s&page=%s'
|
|
firstStripUrl = stripUrl % ('1', '1')
|
|
imageSearch = '//div[@class="comic"]//img'
|
|
prevSearch = '//a[contains(@class, "prev")]'
|
|
|
|
def getIndexStripUrl(self, index):
|
|
index = index.split('-')
|
|
return self.stripUrl % (index[0], index[1])
|