2016-03-31 21:13:54 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
2016-10-28 22:21:41 +00:00
|
|
|
# Copyright (C) 2004-2008 Tristan Seligmann and Jonathan Jacobs
|
2014-01-05 15:50:57 +00:00
|
|
|
# Copyright (C) 2012-2014 Bastian Kleineidam
|
2017-02-12 01:16:38 +00:00
|
|
|
# Copyright (C) 2015-2017 Tobias Gruetzmacher
|
2012-06-20 19:58:13 +00:00
|
|
|
|
2016-03-31 21:13:54 +00:00
|
|
|
from __future__ import absolute_import, division, print_function
|
2016-04-01 22:14:31 +00:00
|
|
|
|
2013-04-10 16:19:11 +00:00
|
|
|
from re import compile, escape
|
2016-04-01 22:14:31 +00:00
|
|
|
|
2017-02-13 21:41:17 +00:00
|
|
|
from ..helpers import xpath_class
|
2015-04-26 11:32:22 +00:00
|
|
|
from ..scraper import _BasicScraper, _ParserScraper
|
2014-03-26 18:59:42 +00:00
|
|
|
from ..util import tagre
|
2017-02-13 21:41:17 +00:00
|
|
|
from .common import _WordPressScraper
|
2012-06-20 19:58:13 +00:00
|
|
|
|
|
|
|
|
2015-05-14 11:06:12 +00:00
|
|
|
class OctopusPie(_ParserScraper):
|
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-04-10 21:57:09 +00:00
|
|
|
stripUrl = url + '%s/'
|
|
|
|
firstStripUrl = stripUrl % '2007-05-14/001-pea-wiggle'
|
2015-05-14 11:06:12 +00:00
|
|
|
imageSearch = '//img[@title]'
|
|
|
|
prevSearch = '//a[@rel="prev"]'
|
2012-06-20 19:58:13 +00:00
|
|
|
help = 'Index format: yyyy-mm-dd/nnn-strip-name'
|
|
|
|
|
|
|
|
|
2016-05-21 00:38:07 +00:00
|
|
|
class Oglaf(_ParserScraper):
|
2013-03-06 19:21:10 +00:00
|
|
|
url = 'http://oglaf.com/'
|
|
|
|
stripUrl = url + '%s/'
|
2016-05-21 00:38:07 +00:00
|
|
|
imageSearch = '//img[@id="strip"]'
|
|
|
|
# search for "previous story" only
|
|
|
|
prevSearch = '//a[div[@id="pvs"]]'
|
|
|
|
# search for "next page"
|
|
|
|
nextSearch = '//a[div[@id="nx"]]'
|
|
|
|
multipleImagesPerStrip = True
|
2013-04-04 16:30:02 +00:00
|
|
|
adult = True
|
|
|
|
|
2016-05-21 00:38:07 +00:00
|
|
|
def fetchUrls(self, url, data, search):
|
|
|
|
urls = []
|
|
|
|
urls.extend(super(Oglaf, self).fetchUrls(url, data, search))
|
|
|
|
if search == self.imageSearch:
|
|
|
|
try:
|
|
|
|
nexturls = self.fetchUrls(url, data, self.nextSearch)
|
|
|
|
except ValueError:
|
|
|
|
pass
|
|
|
|
else:
|
|
|
|
while nexturls and nexturls[0].startswith(url):
|
|
|
|
data = self.getPage(nexturls[0])
|
|
|
|
urls.extend(super(Oglaf, self).fetchUrls(nexturls, data, search))
|
|
|
|
nexturls = self.fetchUrls(url, data, self.nextSearch)
|
|
|
|
return urls
|
|
|
|
|
2013-03-06 19:21:10 +00:00
|
|
|
|
2016-04-10 21:04:34 +00:00
|
|
|
class OhJoySexToy(_WordPressScraper):
|
2014-01-31 03:45:50 +00:00
|
|
|
url = 'http://www.ohjoysextoy.com/'
|
2016-04-10 21:04:34 +00:00
|
|
|
firstStripUrl = url + 'introduction/'
|
|
|
|
prevSearch = '//a[%s]' % xpath_class('navi-prev')
|
|
|
|
textSearch = '//div[@id="comic"]//img/@alt'
|
2014-01-31 03:45:50 +00:00
|
|
|
adult = True
|
|
|
|
|
|
|
|
|
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))
|
2016-04-01 22:14:31 +00:00
|
|
|
prevSearch = compile(tagre("div", "class", "previous") +
|
|
|
|
tagre("a", "href", r'(%scomic/\d{1,4}\.html)' % rurl))
|
2013-03-06 19:21:10 +00:00
|
|
|
help = 'Index format: yyyymmdd'
|
|
|
|
|
|
|
|
|
2015-04-26 11:32:22 +00:00
|
|
|
class OmakeTheater(_ParserScraper):
|
2016-05-05 18:55:14 +00:00
|
|
|
url = 'http://omaketheater.com/comic/'
|
|
|
|
stripUrl = url + '%s'
|
2013-04-10 21:57:09 +00:00
|
|
|
firstStripUrl = stripUrl % '1'
|
2015-04-26 11:32:22 +00:00
|
|
|
css = True
|
|
|
|
imageSearch = ".comicImage img"
|
|
|
|
prevSearch = ".previous a"
|
2013-02-06 21:27:40 +00:00
|
|
|
help = 'Index format: number (unpadded)'
|
|
|
|
|
|
|
|
|
2016-04-01 22:14:31 +00:00
|
|
|
class OnTheEdge(_WordPressScraper):
|
|
|
|
url = 'http://ontheedgecomics.com/'
|
|
|
|
firstStripUrl = 'http://ontheedgecomics.com/comic/ote0001/'
|
|
|
|
|
|
|
|
|
2015-05-02 20:27:08 +00:00
|
|
|
class OnTheFastrack(_BasicScraper):
|
2014-11-14 19:09:42 +00:00
|
|
|
url = 'http://onthefastrack.com/'
|
|
|
|
stripUrl = url + 'comics/%s'
|
|
|
|
firstStripUrl = stripUrl % 'november-13-2000'
|
2016-04-21 06:20:49 +00:00
|
|
|
imageSearch = compile(r'(https://safr\.kingfeatures\.com/idn/cnfeed/zone/js/content\.php\?file=.+)"')
|
2014-11-14 19:37:06 +00:00
|
|
|
prevSearch = compile(r'id="previouscomic" class="button white"><a href="(%scomics/[a-z0-9-]+/)"' % url)
|
2014-11-14 19:09:42 +00:00
|
|
|
help = 'Index format: monthname-dd-yyyy'
|
2016-03-31 21:13:54 +00:00
|
|
|
|
2016-04-21 06:20:49 +00:00
|
|
|
def namer(self, image_url, page_url):
|
|
|
|
name = page_url.rsplit('/', 3)[2]
|
2014-11-14 19:09:42 +00:00
|
|
|
if name == "onthefastrack.com":
|
|
|
|
import datetime
|
|
|
|
name = datetime.date.today().strftime("%B-%d-%Y")
|
|
|
|
# name.title ensures that the comics are named the same
|
|
|
|
# as in the previous scraper
|
|
|
|
return "%s.gif" % name.title()
|
2013-06-24 18:19:33 +00:00
|
|
|
|
|
|
|
|
2016-10-30 09:57:50 +00:00
|
|
|
class OopsComicAdventure(_WordPressScraper):
|
|
|
|
url = 'http://oopscomicadventure.com/'
|
|
|
|
|
|
|
|
|
2016-04-10 21:04:34 +00:00
|
|
|
class Optipess(_WordPressScraper):
|
2014-09-29 02:41:29 +00:00
|
|
|
url = 'http://www.optipess.com/'
|
2016-03-31 21:13:54 +00:00
|
|
|
firstStripUrl = url + '2008/12/01/jason-friend-of-the-butterflies/'
|
2016-04-10 21:04:34 +00:00
|
|
|
prevSearch = '//a[%s]' % xpath_class('navi-prev')
|
|
|
|
textSearch = '//div[@id="comic"]//img/@alt'
|
2016-05-16 21:16:29 +00:00
|
|
|
textOptional = True
|
2014-09-29 02:41:29 +00:00
|
|
|
|
|
|
|
|
2017-02-12 01:16:38 +00:00
|
|
|
class OurHomePlanet(_ParserScraper):
|
|
|
|
url = 'http://www.ourhomeplanet.net/'
|
|
|
|
stripUrl = url + 'comic/%s'
|
2013-04-10 21:57:09 +00:00
|
|
|
firstStripUrl = stripUrl % '01'
|
2017-02-12 01:16:38 +00:00
|
|
|
imageSearch = '//a[@rel="next"]/img'
|
|
|
|
prevSearch = '//a[@rel="prev"]'
|
2012-06-20 19:58:13 +00:00
|
|
|
help = 'Index format: n (unpadded)'
|
|
|
|
|
|
|
|
|
|
|
|
class OverCompensating(_BasicScraper):
|
2013-02-04 20:00:26 +00:00
|
|
|
url = 'http://www.overcompensating.com/'
|
2013-11-12 17:33:14 +00:00
|
|
|
stripUrl = url + 'oc/index.php?comic=%s'
|
2013-07-18 18:39:53 +00:00
|
|
|
firstStripUrl = stripUrl % '0'
|
2013-11-12 17:33:14 +00:00
|
|
|
imageSearch = compile(tagre("img", "src", r'(/oc/comics/[^"]+)'))
|
2016-03-31 21:13:54 +00:00
|
|
|
prevSearch = compile(tagre("a", "href", r'(/oc/index\.php\?comic=\d+)',
|
|
|
|
after="go back"))
|
2013-07-18 18:39:53 +00:00
|
|
|
help = 'Index format: number'
|