dosage/dosagelib/plugins/n.py

176 lines
6.2 KiB
Python
Raw Normal View History

# -*- coding: utf-8 -*-
# Copyright (C) 2004-2005 Tristan Seligmann and Jonathan Jacobs
2014-01-05 15:50:57 +00:00
# Copyright (C) 2012-2014 Bastian Kleineidam
# Copyright (C) 2015-2016 Tobias Gruetzmacher
2012-06-20 19:58:13 +00:00
from __future__ import absolute_import, division, print_function
from re import compile, escape
2015-05-14 10:42:04 +00:00
from ..scraper import _BasicScraper, _ParserScraper
from ..helpers import indirectStarter
2012-11-21 20:57:26 +00:00
from ..util import tagre
from .common import (_ComicControlScraper, _WordPressScraper, WP_LATEST_SEARCH,
xpath_class)
2012-06-20 19:58:13 +00:00
class Namesake(_ComicControlScraper):
2013-03-03 21:41:11 +00:00
url = 'http://namesakecomic.com/'
2012-06-20 19:58:13 +00:00
class NamirDeiter(_BasicScraper):
url = 'http://www.namirdeiter.com/'
rurl = escape(url)
stripUrl = url + 'comics/index.php?date=%s'
2013-04-10 21:57:09 +00:00
firstStripUrl = stripUrl % '19991128'
imageSearch = compile(tagre("img", "src", r"'?(%scomics/\d+\.jpg)'?" % rurl, quote=""))
prevSearch = compile(tagre("a", "href", r'(%scomics/index\.php\?date=\d+)' % rurl, quote="'") + "Previous")
2012-06-20 19:58:13 +00:00
help = 'Index format: yyyymmdd'
2013-07-10 16:43:53 +00:00
class NatalieDee(_BasicScraper):
url = 'http://www.nataliedee.com/'
rurl = escape(url)
2013-07-18 18:39:53 +00:00
stripUrl = url + '%s'
2013-07-10 16:43:53 +00:00
firstStripUrl = stripUrl % '022806'
imageSearch = compile(tagre("img", "src", r'(%s\d+/[^"]+)' % rurl,
before="overflow"))
2013-07-10 16:43:53 +00:00
prevSearch = compile(tagre("a", "href", r'([^"]+)') + "<< Yesterday")
help = 'Index format: mmddyy'
@classmethod
def namer(cls, imageUrl, pageUrl):
unused, date, filename = imageUrl.rsplit('/', 2)
return '%s-%s' % (date, filename)
class Nedroid(_WordPressScraper):
url = 'http://nedroid.com/'
prevSearch = '//a[@rel="prev"]'
class NekkoAndJoruba(_BasicScraper):
url = 'http://www.nekkoandjoruba.com/'
stripUrl = url + '?p=%s'
firstStripUrl = stripUrl % '7'
imageSearch = compile(r'<img src="(http://www\.nekkoandjoruba\.com/comics/.+?)"')
prevSearch = compile(r'<a href="(.+?)">&lsaquo;</a>')
help = 'Index format: nnn'
class NekoTheKitty(_ParserScraper):
url = 'http://www.nekothekitty.net/'
stripUrl = url + 'comics/%s'
firstStripUrl = stripUrl % '936393/001-video-games'
imageSearch = '//a[@id="comic_image"]/img'
prevSearch = '//a[text()="<-"]'
2012-06-20 19:58:13 +00:00
class NeoEarth(_BasicScraper):
url = 'http://www.neo-earth.com/NE/'
stripUrl = url + 'index.php?date=%s'
2013-04-10 21:57:09 +00:00
firstStripUrl = stripUrl % '2007-03-23'
2012-06-20 19:58:13 +00:00
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'
2012-06-20 19:58:13 +00:00
class NewAdventuresOfBobbin(_BasicScraper):
url = 'http://www.bobbin-comic.com/bobbin_strips/'
2012-11-21 20:57:26 +00:00
imageSearch = compile(tagre("a", "href", r'(\d+\.gif)'))
2012-12-07 23:45:18 +00:00
multipleImagesPerStrip = True
2012-11-21 20:57:26 +00:00
help = 'Index format: none'
2012-06-20 19:58:13 +00:00
class NewWorld(_BasicScraper):
url = 'http://www.tfsnewworld.com/'
2013-04-10 21:57:09 +00:00
stripUrl = url + '%s/'
firstStripUrl = stripUrl % '2007/08/30/63'
2012-06-20 19:58:13 +00:00
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'
2012-12-04 06:02:40 +00:00
stripUrl = 'http://static.nichtlustig.de/toondb/%s.html'
2013-03-08 21:33:05 +00:00
lang = 'de'
2012-11-21 20:57:26 +00:00
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)'))
2012-06-20 19:58:13 +00:00
help = 'Index format: yymmdd'
starter = indirectStarter(
url, compile(tagre("a", "href", r'([^"]*toondb/\d+\.html)')))
2012-06-20 19:58:13 +00:00
class Nicky510(_WordPressScraper):
url = 'http://www.nickyitis.com/'
prevSearch = '//a[%s]' % xpath_class('navi-prev')
2014-12-08 13:28:37 +00:00
class Nimona(_BasicScraper):
url = 'http://gingerhaze.com/nimona/'
stripUrl = url + '%s/'
firstStripUrl = stripUrl % "comic/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
2012-06-20 19:58:13 +00:00
class NobodyScores(_BasicScraper):
url = 'http://nobodyscores.loosenutstudio.com/'
rurl = escape(url)
stripUrl = url + 'index.php?id=%s'
2013-04-10 21:57:09 +00:00
firstStripUrl = stripUrl % '4'
imageSearch = compile(tagre("img", "src", r'(%scomix/[^"]+)' % rurl))
2012-12-04 06:02:40 +00:00
multipleImagesPerStrip = True
prevSearch = compile(r'<a href="(%sindex.php.+?)">the one before </a>' % rurl)
2012-06-20 19:58:13 +00:00
help = 'Index format: nnn'
2013-03-06 19:21:10 +00:00
class NoMoreSavePoints(_WordPressScraper):
url = 'http://www.flowerlarkstudios.com/comic/no-more-save-points/mushroom-hopping/'
firstStripUrl = url
starter = indirectStarter(firstStripUrl, WP_LATEST_SEARCH)
2013-03-06 19:21:10 +00:00
class NoNeedForBushido(_BasicScraper):
2013-11-12 17:33:14 +00:00
url = 'http://nn4b.com/'
rurl = escape(url)
stripUrl = url + '?webcomic1=%s'
imageSearch = compile(
tagre("a", "rel", "next") +
tagre("img", "src", r'(%swp-content/uploads/\d+/\d+/[^"]+)' % rurl,
after="attachment-full"))
prevSearch = compile(tagre("a", "href", r'(%s\?webcomic1=[^"]+)' % rurl,
after="previous-webcomic"))
2013-11-12 17:33:14 +00:00
help = 'Index format: nnn'
starter = indirectStarter(
url, compile(tagre("a", "href", r'(%s\?webcomic1=[^"]+)' % rurl,
after="last-webcomic")))
2013-03-06 19:21:10 +00:00
class NotInventedHere(_BasicScraper):
url = 'http://notinventedhe.re/'
rurl = escape(url)
stripUrl = url + '%s/'
firstStripUrl = stripUrl % 'on/2009-9-21'
imageSearch = compile(tagre("img", "src", r'(http://thiswas.notinventedhe.re/on/\d+-\d+-\d+)'))
prevSearch = compile(tagre("a", "href", r'(/on/\d+-\d+-\d+)') +
'\s*Previous')
help = 'Index format: yyyy-mm-dd'
2013-03-06 19:21:10 +00:00
2013-03-06 19:21:10 +00:00
class Nukees(_BasicScraper):
url = 'http://www.nukees.com/'
stripUrl = url + 'd/%s'
2013-04-10 21:57:09 +00:00
firstStripUrl = stripUrl % '19970121'
2013-03-06 19:21:10 +00:00
imageSearch = compile(r'"comic".+?"(/comics/.+?)"')
prevSearch = compile(r'"(/d/.+?)".+?previous')
help = 'Index format: yyyymmdd.html'