149 lines
4.9 KiB
Python
149 lines
4.9 KiB
Python
# -*- coding: utf-8 -*-
|
|
# Copyright (C) 2004-2008 Tristan Seligmann and Jonathan Jacobs
|
|
# Copyright (C) 2012-2014 Bastian Kleineidam
|
|
# Copyright (C) 2015-2017 Tobias Gruetzmacher
|
|
|
|
from __future__ import absolute_import, division, print_function
|
|
|
|
from re import compile, escape
|
|
|
|
from ..scraper import _BasicScraper, _ParserScraper
|
|
from ..helpers import indirectStarter
|
|
from ..util import tagre
|
|
from .common import _ComicControlScraper, _WordPressScraper, _WPNavi, WP_LATEST_SEARCH
|
|
|
|
|
|
class Namesake(_ComicControlScraper):
|
|
url = 'http://namesakecomic.com/'
|
|
|
|
|
|
class NamirDeiter(_ParserScraper):
|
|
baseUrl = 'http://www.namirdeiter.com/comics/'
|
|
stripUrl = baseUrl + 'index.php?date=%s'
|
|
url = stripUrl % '20150410'
|
|
firstStripUrl = baseUrl
|
|
imageSearch = '//a/img'
|
|
prevSearch = '//a[text()="Previous"]'
|
|
endOfLife = True
|
|
help = 'Index format: yyyymmdd'
|
|
|
|
|
|
class NatalieDee(_BasicScraper):
|
|
url = 'http://www.nataliedee.com/'
|
|
rurl = escape(url)
|
|
stripUrl = url + '%s'
|
|
firstStripUrl = stripUrl % '022806'
|
|
imageSearch = compile(tagre("img", "src", r'(%s\d+/[^"]+)' % rurl,
|
|
before="overflow"))
|
|
prevSearch = compile(tagre("a", "href", r'([^"]+)') + "<< Yesterday")
|
|
help = 'Index format: mmddyy'
|
|
|
|
def namer(self, image_url, page_url):
|
|
unused, date, filename = image_url.rsplit('/', 2)
|
|
return '%s-%s' % (date, filename)
|
|
|
|
|
|
class Nedroid(_WordPressScraper):
|
|
url = 'http://nedroid.com/'
|
|
prevSearch = '//a[@rel="prev"]'
|
|
|
|
|
|
class NeoEarth(_BasicScraper):
|
|
url = 'http://www.neo-earth.com/NE/'
|
|
stripUrl = url + 'index.php?date=%s'
|
|
firstStripUrl = stripUrl % '2007-03-23'
|
|
imageSearch = compile(r'<img src="(strips/.+?)"')
|
|
prevSearch = compile(r'<a href="(.+?)">Previous</a>')
|
|
help = 'Index format: yyyy-mm-dd'
|
|
|
|
|
|
class NerfNow(_WordPressScraper):
|
|
url = 'https://www.nerfnow.com/'
|
|
prevSearch = '//li[@id="nav_previous"]/a'
|
|
|
|
|
|
class NewWorld(_BasicScraper):
|
|
url = 'http://www.tfsnewworld.com/'
|
|
stripUrl = url + '%s/'
|
|
firstStripUrl = stripUrl % '2007/08/30/63'
|
|
imageSearch = compile(r'<img src="(http://www.tfsnewworld.com/comics/.+?)"')
|
|
prevSearch = compile(r'<div class="nav-previous"><a href="([^"]+)" rel="prev">')
|
|
help = 'Index format: yyyy/mm/dd/stripn'
|
|
|
|
|
|
class NichtLustig(_BasicScraper):
|
|
url = 'http://www.nichtlustig.de/main.html'
|
|
stripUrl = 'http://static.nichtlustig.de/toondb/%s.html'
|
|
lang = 'de'
|
|
imageSearch = compile('background-image:url\((http://static\.nichtlustig\.de/comics/full/\d+\.jpg)')
|
|
prevSearch = compile(tagre("a", "href", r'(http://static\.nichtlustig\.de/toondb/\d+\.html)'))
|
|
latestSearch = compile(tagre("a", "href", r'([^"]*toondb/\d+\.html)'))
|
|
help = 'Index format: yymmdd'
|
|
starter = indirectStarter
|
|
|
|
|
|
class Nicky510(_WPNavi):
|
|
url = 'http://www.nickyitis.com/'
|
|
|
|
|
|
class Nimona(_BasicScraper):
|
|
url = 'http://gingerhaze.com/nimona/'
|
|
stripUrl = url + 'comic/%s'
|
|
firstStripUrl = stripUrl % "page-1"
|
|
imageSearch = compile(tagre("img", "src", r'(http://gingerhaze\.com/sites/default/files/nimona-pages/.+?)'))
|
|
prevSearch = compile(r'<a href="(/nimona/comic/[^"]+)"><img src="http://gingerhaze\.com/sites/default/files/comicdrop/comicdrop_prev_label_file\.png"')
|
|
help = 'Index format: stripname'
|
|
endOfLife = True
|
|
|
|
|
|
class NineToNine(_ParserScraper):
|
|
url = 'https://www.tigerknight.com/99'
|
|
stripUrl = url + '/%s'
|
|
firstStripUrl = stripUrl % '2014-01-01'
|
|
imageSearch = '//img[@class="comic-image"]'
|
|
prevSearch = '//a[@class="prev"]'
|
|
multipleImagesPerStrip = True
|
|
|
|
|
|
class NobodyScores(_BasicScraper):
|
|
url = 'http://nobodyscores.loosenutstudio.com/'
|
|
rurl = escape(url)
|
|
stripUrl = url + 'index.php?id=%s'
|
|
firstStripUrl = stripUrl % '4'
|
|
imageSearch = compile(tagre("img", "src", r'(%scomix/[^"]+)' % rurl))
|
|
multipleImagesPerStrip = True
|
|
prevSearch = compile(r'<a href="(%sindex.php.+?)">the one before </a>' % rurl)
|
|
help = 'Index format: nnn'
|
|
|
|
|
|
class NoMoreSavePoints(_WordPressScraper):
|
|
url = 'http://www.flowerlarkstudios.com/comicpage/no-more-save-points/mushroom-hopping/'
|
|
firstStripUrl = url
|
|
latestSearch = WP_LATEST_SEARCH
|
|
starter = indirectStarter
|
|
|
|
|
|
class NoNeedForBushido(_ParserScraper):
|
|
url = 'http://nn4b.com/'
|
|
stripUrl = url + 'comic/%s'
|
|
imageSearch = '//div[@id="comic-image"]//img'
|
|
prevSearch = '//a[@rel="prev"]'
|
|
help = 'Index format: nnn'
|
|
|
|
|
|
class NotInventedHere(_ParserScraper):
|
|
url = 'http://notinventedhe.re/'
|
|
stripUrl = url + 'on/%s'
|
|
firstStripUrl = stripUrl % '2009-9-21'
|
|
imageSearch = '//div[@id="comic-content"]//img'
|
|
prevSearch = '//a[@id="nav-previous"]'
|
|
help = 'Index format: yyyy-m-d'
|
|
|
|
|
|
class Nukees(_BasicScraper):
|
|
url = 'http://www.nukees.com/'
|
|
stripUrl = url + 'd/%s'
|
|
firstStripUrl = stripUrl % '19970121'
|
|
imageSearch = compile(r'"comic".+?"(/comics/.+?)"')
|
|
prevSearch = compile(r'"(/d/.+?)".+?previous')
|
|
help = 'Index format: yyyymmdd.html'
|