63 lines
2.3 KiB
Python
63 lines
2.3 KiB
Python
# -*- coding: iso-8859-1 -*-
|
|
# Copyright (C) 2004-2005 Tristan Seligmann and Jonathan Jacobs
|
|
# Copyright (C) 2012-2013 Bastian Kleineidam
|
|
|
|
from re import compile, escape
|
|
from ..scraper import _BasicScraper
|
|
from ..util import tagre
|
|
|
|
|
|
class IAmArg(_BasicScraper):
|
|
url = 'http://iamarg.com/'
|
|
rurl = escape(url)
|
|
stripUrl = url + '%s/'
|
|
firstStripUrl = stripUrl % '2011/05/08/05082011'
|
|
imageSearch = compile(tagre("img", "src", r'(%scomics/\d+-\d+-\d+[^"]+)' % rurl))
|
|
prevSearch = compile(tagre("a", "href", r'(%s\d+/\d+/\d+/[^"]+)' % rurl, after="prev"))
|
|
help = 'Index format: yyyy/mm/dd/stripname'
|
|
|
|
|
|
class IanJay(_BasicScraper):
|
|
url = 'http://ianjay.net/'
|
|
rurl = escape(url)
|
|
stripUrl = url + '?p=%s'
|
|
firstStripUrl = stripUrl % '210'
|
|
imageSearch = compile(tagre("img", "src", r'(%scomics/\d+[^"]+)' % rurl))
|
|
prevSearch = compile(tagre("a", "href", r'(%s\?p=\d+)' % rurl, after="Previous"))
|
|
help = 'Index foramt: nnn'
|
|
|
|
|
|
class IDreamOfAJeanieBottle(_BasicScraper):
|
|
url = 'http://jeaniebottle.com/'
|
|
stripUrl = url + '?p=%s'
|
|
firstStripUrl = stripUrl % '15'
|
|
imageSearch = compile(r'(/comics/.+?)"')
|
|
prevSearch = compile(tagre("a", "href", r'(http://jeaniebottle\.com/\?p=\d+)', after="prev"))
|
|
help = 'Index format: n (unpadded)'
|
|
|
|
|
|
class InsideOut(_BasicScraper):
|
|
url = 'http://www.insideoutcomic.com/'
|
|
stripUrl = url + 'html/%s.html'
|
|
firstStripUrl = stripUrl % '1_snake_suicide'
|
|
imageSearch = compile(r'Picture12LYR.+?C="(.+?/assets/images/.+?)"')
|
|
prevSearch = compile(r'Picture7LYR.+?F="(.+?/html/.+?)"')
|
|
help = 'Index format: n_comic_name'
|
|
|
|
|
|
class IrregularWebcomic(_BasicScraper):
|
|
url = 'http://www.irregularwebcomic.net/'
|
|
stripUrl = url + '%s.html'
|
|
firstStripUrl = stripUrl % '1'
|
|
imageSearch = compile(r'<img .*src="(.*comics/.*(png|jpg|gif))".*>')
|
|
prevSearch = compile(r'<a href="(/\d+\.html|/cgi-bin/comic\.pl\?comic=\d+)">Previous ')
|
|
help = 'Index format: nnn'
|
|
|
|
|
|
class ItsWalky(_BasicScraper):
|
|
url = 'http://www.itswalky.com/'
|
|
stripUrl = url + 'd/%s.html'
|
|
firstStripUrl = stripUrl % '19970908'
|
|
imageSearch = compile(tagre("img", "src", r'(/comic[s|/][^"]+)'))
|
|
prevSearch = compile(tagre("a", "href", r'[^"]*(/d/\d+\.s?html)')+r"[^>]+/images/(?:nav_02|previous_day)\.gif")
|
|
help = 'Index format: yyyymmdd'
|