dosage/dosagelib/plugins/v.py

88 lines
2.8 KiB
Python
Raw Normal View History

# SPDX-License-Identifier: MIT
2024-03-17 20:44:46 +00:00
# SPDX-FileCopyrightText: © 2004 Tristan Seligmann and Jonathan Jacobs
# SPDX-FileCopyrightText: © 2012 Bastian Kleineidam
# SPDX-FileCopyrightText: © 2015 Tobias Gruetzmacher
# SPDX-FileCopyrightText: © 2019 Daniel Ring
2022-12-26 09:28:47 +00:00
from ..scraper import ParserScraper, _ParserScraper
from ..helpers import bounceStarter, indirectStarter
2012-06-20 19:58:13 +00:00
2019-07-15 09:33:32 +00:00
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])
2020-09-30 19:37:29 +00:00
class VGCats(_ParserScraper):
url = 'https://www.vgcats.com/comics/'
stripUrl = url + '?strip_id=%s'
2013-04-10 21:57:09 +00:00
firstStripUrl = stripUrl % '0'
2024-04-01 22:02:53 +00:00
imageSearch = '//td/font/img[contains(@src, "images/")]'
2020-09-30 19:37:29 +00:00
prevSearch = '//a[img[contains(@src, "back.")]]'
2012-06-20 19:58:13 +00:00
help = 'Index format: n (unpadded)'
class Vibe(ParserScraper):
starter = indirectStarter
url = 'http://www.vibecomic.com/vibe/'
stripUrl = url + '%s'
firstStripUrl = stripUrl % ''
imageSearch = '//div[@id="cc-comicbody"]//img'
prevSearch = '//a[@rel="prev"]'
nextSearch = '//a[@rel="next"]'
latestSearch = '//a[@class="last"]'
help = 'Index format: VIBEnnn (padded)'
2024-03-17 20:44:46 +00:00
class VickiFox(ParserScraper):
2019-12-01 01:37:51 +00:00
url = 'http://www.vickifox.com/comic/strip'
stripUrl = url + '?id=%s'
firstStripUrl = stripUrl % '001'
imageSearch = '//img[contains(@src, "comic/")]'
prevSearch = '//button[@id="btnPrev"]/@value'
2024-03-17 20:44:46 +00:00
def link_modifier(self, fromurl, tourl):
return self.stripUrl % tourl
2019-12-01 01:37:51 +00:00
2016-10-31 05:57:47 +00:00
class ViiviJaWagner(_ParserScraper):
url = 'http://www.hs.fi/viivijawagner/'
2017-02-12 19:29:57 +00:00
imageSearch = '//meta[@property="og:image"]/@content'
prevSearch = '//a[d:class("prev")]'
latestSearch = '//div[d:class("cartoon-content")]//a'
2017-02-12 19:29:57 +00:00
starter = indirectStarter
2015-04-18 20:45:13 +00:00
lang = 'fi'
2012-12-07 23:45:18 +00:00
def namer(self, image_url, page_url):
2017-02-12 19:29:57 +00:00
return page_url.rsplit('-', 1)[1].split('.')[0]
2019-07-12 07:46:45 +00:00
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])
2022-12-26 09:28:47 +00:00
class Vreakerz(ParserScraper):
url = 'http://vreakerz.angrykitten.nl/'
stripUrl = url + 'stories/read/%s'
firstStripUrl = stripUrl % '1'
imageSearch = '//img[contains(@src, "storypages")]'
prevSearch = '//a[@class="btn-prior"]'