dosage/dosagelib/plugins/k.py

51 lines
2 KiB
Python
Raw Normal View History

# -*- coding: iso-8859-1 -*-
# Copyright (C) 2004-2005 Tristan Seligmann and Jonathan Jacobs
2012-11-21 20:57:26 +00:00
# Copyright (C) 2012 Bastian Kleineidam
2012-06-20 19:58:13 +00:00
2012-11-21 20:57:26 +00:00
from re import compile, IGNORECASE
2012-10-11 10:03:12 +00:00
from ..scraper import _BasicScraper
from ..util import tagre
2012-06-20 19:58:13 +00:00
class Key(_BasicScraper):
latestUrl = 'http://key.shadilyn.com/latestpage.html'
2012-11-13 18:10:19 +00:00
stripUrl = 'http://key.shadilyn.com/pages/%s.html'
2012-06-20 19:58:13 +00:00
imageSearch = compile(r'"((?:images/.+?)|(?:pages/images/.+?))"')
prevSearch = compile(r'</a><a href="(.+?html)".+?prev')
help = 'Index format: nnn'
class Krakow(_BasicScraper):
2012-11-21 20:57:26 +00:00
latestUrl = 'http://www.krakow.krakowstudios.com/'
stripUrl = latestUrl + 'archive.php?date=%s'
2012-06-20 19:58:13 +00:00
imageSearch = compile(r'<img src="(comics/.+?)"')
prevSearch = compile(r'<a href="(archive\.php\?date=.+?)"><img border=0 name=previous_day')
help = 'Index format: yyyymmdd'
class Kukuburi(_BasicScraper):
latestUrl = 'http://www.kukuburi.com/current/'
2012-11-21 20:57:26 +00:00
stripUrl = 'http://www.kukuburi.com/v2/%s/'
2012-06-20 19:58:13 +00:00
imageSearch = compile(r'img src="(http://www.kukuburi.com/../comics/.+?)"')
prevSearch = compile(r'nav-previous.+?"(http.+?)"')
2012-11-21 20:57:26 +00:00
help = 'Index format: yyyy/mm/dd/stripname'
2012-06-20 19:58:13 +00:00
class KevinAndKell(_BasicScraper):
latestUrl = 'http://www.kevinandkell.com/'
stripUrl = latestUrl + '%s/kk%s%s.html'
2012-06-20 19:58:13 +00:00
imageSearch = compile(r'<img.+?src="(/?(\d+/)?strips/kk\d+.gif)"', IGNORECASE)
prevSearch = compile(r'<a.+?href="(/?(\.\./)?\d+/kk\d+\.html)"[^>]*><span>Previous Strip', IGNORECASE)
help = 'Index format: yyyy-mm-dd'
def setStrip(self, index):
2012-11-13 18:10:19 +00:00
self.currentUrl = self.stripUrl % tuple(map(int, index.split('-')))
2012-06-20 19:58:13 +00:00
class KillerKomics(_BasicScraper):
latestUrl = 'http://www.killerkomics.com/web-comics/index_ang.cfm'
2012-11-13 18:10:19 +00:00
stripUrl = 'http://www.killerkomics.com/web-comics/%s.cfm'
2012-06-20 19:58:13 +00:00
imageSearch = compile(r'<img src="(http://www.killerkomics.com/FichiersUpload/Comics/.+?)"')
prevSearch = compile(r'<div id="precedent"><a href="(.+?)"')
help = 'Index format: strip-name'