2012-06-20 20:41:04 +00:00
|
|
|
# -*- coding: iso-8859-1 -*-
|
|
|
|
# Copyright (C) 2004-2005 Tristan Seligmann and Jonathan Jacobs
|
2013-02-05 18:51:46 +00:00
|
|
|
# Copyright (C) 2012-2013 Bastian Kleineidam
|
2012-06-20 19:58:13 +00:00
|
|
|
|
2013-04-10 16:19:11 +00:00
|
|
|
from re import compile, escape
|
2012-10-11 10:03:12 +00:00
|
|
|
from ..scraper import _BasicScraper
|
|
|
|
from ..helpers import indirectStarter
|
2013-04-04 16:30:02 +00:00
|
|
|
from ..util import tagre, urlopen
|
2012-06-20 19:58:13 +00:00
|
|
|
|
|
|
|
|
|
|
|
class OctopusPie(_BasicScraper):
|
2013-02-04 20:00:26 +00:00
|
|
|
url = 'http://www.octopuspie.com/'
|
2013-04-10 16:19:11 +00:00
|
|
|
rurl = escape(url)
|
2013-02-04 20:00:26 +00:00
|
|
|
starter = indirectStarter(url,
|
2013-04-10 16:19:11 +00:00
|
|
|
compile(tagre("a", "href", r'(%s[^"]+)' % rurl) +
|
|
|
|
tagre("img", "src", r'%sjunk/latest\.png' % rurl)))
|
2013-04-10 21:57:09 +00:00
|
|
|
stripUrl = url + '%s/'
|
|
|
|
firstStripUrl = stripUrl % '2007-05-14/001-pea-wiggle'
|
2013-04-10 16:19:11 +00:00
|
|
|
imageSearch = compile(tagre("img", "src", r'(%sstrippy/[^"]+)' % rurl))
|
|
|
|
prevSearch = compile(tagre("a", "href", r'(%s[^"]+)' % rurl, after="prev"))
|
2012-06-20 19:58:13 +00:00
|
|
|
help = 'Index format: yyyy-mm-dd/nnn-strip-name'
|
|
|
|
|
|
|
|
|
|
|
|
class OddFish(_BasicScraper):
|
2013-02-04 20:00:26 +00:00
|
|
|
url = 'http://www.odd-fish.net/'
|
2013-04-10 16:19:11 +00:00
|
|
|
rurl = escape(url)
|
2013-02-04 20:00:26 +00:00
|
|
|
stripUrl = url + '%s/'
|
2013-04-10 21:57:09 +00:00
|
|
|
firstStripUrl = stripUrl % 'tv-tentacles'
|
2013-04-10 16:19:11 +00:00
|
|
|
imageSearch = compile(tagre("img", "src", r'(%scomics/[^"]+)' % rurl))
|
|
|
|
prevSearch = compile(tagre("a", "href", r'(%s[^"]+)' % rurl, after="navi-prev"))
|
2012-11-21 20:57:26 +00:00
|
|
|
help = 'Index format: stripname'
|
2012-06-20 19:58:13 +00:00
|
|
|
|
|
|
|
|
2013-03-06 19:21:10 +00:00
|
|
|
class Oglaf(_BasicScraper):
|
|
|
|
url = 'http://oglaf.com/'
|
|
|
|
stripUrl = url + '%s/'
|
2013-04-04 16:30:02 +00:00
|
|
|
imageSearch = compile(tagre("img", "src", r'(http://media\.oglaf\.com/comic/[^"]+)', before="strip"))
|
|
|
|
prevSearch = compile(tagre("a", "href", r'(/[^"]+)') + tagre("div", "id", "pvs?"))
|
2013-03-06 19:21:10 +00:00
|
|
|
help = 'Index format: stripname/nn'
|
2013-04-04 16:30:02 +00:00
|
|
|
adult = True
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def starter(cls):
|
|
|
|
# click the "I am 18" button
|
|
|
|
data = {"over18": " "}
|
2013-04-11 16:27:43 +00:00
|
|
|
urlopen(cls.url, cls.session, data=data, referrer=cls.url)
|
2013-04-04 16:30:02 +00:00
|
|
|
return cls.url
|
2013-03-06 19:21:10 +00:00
|
|
|
|
|
|
|
|
|
|
|
class OkCancel(_BasicScraper):
|
|
|
|
url = 'http://okcancel.com/'
|
2013-04-10 16:19:11 +00:00
|
|
|
rurl = escape(url)
|
2013-03-06 19:21:10 +00:00
|
|
|
stripUrl = url + 'comic/%s.html'
|
2013-04-10 21:57:09 +00:00
|
|
|
firstStripUrl = stripUrl % '1'
|
2013-04-10 16:19:11 +00:00
|
|
|
imageSearch = compile(tagre("img", "src", r'(%sstrips/okcancel\d{8}\.gif)' % rurl))
|
|
|
|
prevSearch = compile(tagre("div", "class", "previous") + tagre("a", "href", r'(%scomic/\d{1,4}\.html)' % rurl))
|
2013-03-06 19:21:10 +00:00
|
|
|
starter = indirectStarter(url, prevSearch)
|
|
|
|
help = 'Index format: yyyymmdd'
|
|
|
|
|
|
|
|
|
2013-02-06 21:27:40 +00:00
|
|
|
class OmakeTheater(_BasicScraper):
|
|
|
|
url = 'http://omaketheater.com/'
|
2013-04-10 16:19:11 +00:00
|
|
|
rurl = escape(url)
|
2013-04-10 21:57:09 +00:00
|
|
|
stripUrl = url + 'comic/%s/'
|
|
|
|
firstStripUrl = stripUrl % '1'
|
2013-02-06 21:27:40 +00:00
|
|
|
imageSearch = compile(tagre("img", "src", r'(http://media\.omaketheater\.com/4koma/[^"]+)'))
|
2013-04-10 16:19:11 +00:00
|
|
|
prevSearch = compile(tagre("a", "href", r'(%scomic/\d+/)' % rurl, after="prev"))
|
2013-02-06 21:27:40 +00:00
|
|
|
starter = indirectStarter(url,
|
2013-04-10 16:19:11 +00:00
|
|
|
compile(tagre("a", "href", r'(%scomic/\d+/)' % rurl)))
|
2013-02-06 21:27:40 +00:00
|
|
|
help = 'Index format: number (unpadded)'
|
|
|
|
|
|
|
|
|
2012-06-20 19:58:13 +00:00
|
|
|
class OnTheEdge(_BasicScraper):
|
2013-02-04 20:00:26 +00:00
|
|
|
url = 'http://ontheedgecomics.com/'
|
2013-04-10 16:19:11 +00:00
|
|
|
rurl = escape(url)
|
2013-04-10 21:57:09 +00:00
|
|
|
stripUrl = url + 'comic/%s/'
|
|
|
|
firstStripUrl = stripUrl % 'ote0001'
|
2013-04-10 16:19:11 +00:00
|
|
|
imageSearch = compile(r'<img src="(%scomics/.+?)"' % rurl)
|
2012-06-20 19:58:13 +00:00
|
|
|
prevSearch = compile(r'<a href="([^"]+)" rel="prev">')
|
|
|
|
help = 'Index format: nnn (unpadded)'
|
|
|
|
|
|
|
|
|
2013-06-24 18:19:33 +00:00
|
|
|
class OnTheFasttrack(_BasicScraper):
|
|
|
|
url = 'http://www.onthefastrack.com/'
|
|
|
|
rurl = escape(url)
|
2013-07-09 20:21:17 +00:00
|
|
|
stripUrl = url + '?webcomic1=%s'
|
2013-06-24 18:19:33 +00:00
|
|
|
firstStripUrl = stripUrl % '2010-08-09'
|
|
|
|
imageSearch = compile(tagre("img", "src", r'(%swp-content/uploads/\d+/\d+/[^"]+-\d+-\d+\.[^"]+)' % rurl))
|
|
|
|
prevSearch = compile(tagre("a", "href", r'(%s\?webcomic1=[^"]+)' % rurl, after="prev"))
|
|
|
|
description = u'On The Fasttrack by Bill Holbrook'
|
|
|
|
help = 'Index format: yyyy-mm-dd'
|
|
|
|
|
|
|
|
|
2012-06-20 19:58:13 +00:00
|
|
|
class OneQuestion(_BasicScraper):
|
2013-07-18 18:39:53 +00:00
|
|
|
url = 'http://www.onequestioncomic.com/'
|
2013-02-04 20:00:26 +00:00
|
|
|
stripUrl = url + 'comic.php?strip_id=%s'
|
2013-04-10 21:57:09 +00:00
|
|
|
firstStripUrl = stripUrl % '1'
|
2013-04-11 16:27:43 +00:00
|
|
|
imageSearch = compile(tagre("img", "src", r'((?:\.\./)?istrip_files/strips/\d+\.\w{3,4})'))
|
2012-11-21 20:57:26 +00:00
|
|
|
prevSearch = compile(tagre("a", "href", r'(comic\.php\?strip_id=\d+)') + tagre("img", "src", r'img/arrow_prev\.jpg'))
|
2012-06-20 19:58:13 +00:00
|
|
|
help = 'Index format: n (unpadded)'
|
|
|
|
|
|
|
|
|
2013-03-12 20:23:26 +00:00
|
|
|
class OrnerBoy(_BasicScraper):
|
|
|
|
url = 'http://www.orneryboy.com/'
|
2013-04-10 16:19:11 +00:00
|
|
|
rurl = escape(url)
|
2013-03-12 20:23:26 +00:00
|
|
|
stripUrl = url + 'index.php?comicID=%s'
|
|
|
|
firstStripUrl = stripUrl % '1'
|
|
|
|
imageSearch = compile(tagre("img", "src", r'(comics/\d+\.[^"]+)'))
|
2013-04-10 16:19:11 +00:00
|
|
|
prevSearch = compile(tagre("a", "href", r'(%sindex\.php\?comicID=\d+)' % rurl) +
|
2013-03-12 20:23:26 +00:00
|
|
|
tagre("img", "src", r'images/prev_a\.gif'))
|
|
|
|
help = 'Index format: number'
|
|
|
|
|
|
|
|
|
2012-06-20 19:58:13 +00:00
|
|
|
class OurHomePlanet(_BasicScraper):
|
2013-02-04 20:00:26 +00:00
|
|
|
url = 'http://gdk.gd-kun.net/'
|
|
|
|
stripUrl = url + '%s.html'
|
2013-04-10 21:57:09 +00:00
|
|
|
firstStripUrl = stripUrl % '01'
|
2012-06-20 19:58:13 +00:00
|
|
|
imageSearch = compile(r'<img src="(pages/comic.+?)"')
|
|
|
|
prevSearch = compile(r'coords="50,18,95,65".+?href="(.+?\.html)".+?alt=')
|
|
|
|
help = 'Index format: n (unpadded)'
|
|
|
|
|
|
|
|
|
|
|
|
class OverCompensating(_BasicScraper):
|
2013-04-14 07:02:14 +00:00
|
|
|
description = u'OVERCOMPENSATING: The Journal Comic With a Seething Disdain for Reality.'
|
2013-02-04 20:00:26 +00:00
|
|
|
url = 'http://www.overcompensating.com/'
|
2013-07-18 18:39:53 +00:00
|
|
|
stripUrl = url + 'overcompensating/index.php?comic=%s'
|
|
|
|
firstStripUrl = stripUrl % '0'
|
|
|
|
imageSearch = compile(tagre("img", "src", r'(/overcompensating/comics/[^"]+)'))
|
|
|
|
prevSearch = compile(tagre("a", "href", r'(/overcompensating/index\.php\?comic=\d+)', after="go back"))
|
|
|
|
help = 'Index format: number'
|