dosage/dosagelib/plugins/n.py

132 lines
5.3 KiB
Python
Raw Normal View History

# -*- 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
2012-11-26 06:13:32 +00:00
from re import compile
2012-10-11 10:03:12 +00:00
from ..scraper import _BasicScraper
2012-12-04 06:02:40 +00:00
from ..helpers import indirectStarter, bounceStarter
2012-11-21 20:57:26 +00:00
from ..util import tagre
2012-06-20 19:58:13 +00:00
2013-03-03 21:41:11 +00:00
class Namesake(_BasicScraper):
url = 'http://namesakecomic.com/'
stripUrl = url + 'comic/%s'
imageSearch = compile(tagre("img", "src", r'([^"]*/wp-content/uploads/[^"]+)', after='title='))
prevSearch = compile(tagre("a", "href", r'([^"]*/comic/[^"]+)', after='navi-prev'))
help = 'Index format: name'
@classmethod
def namer(cls, imageUrl, pageUrl):
imgmatch = compile(r'uploads/(\d+)/(\d+)/(.+)$').search(imageUrl)
return '-'.join(imgmatch.groups())
2012-06-20 19:58:13 +00:00
class NamirDeiter(_BasicScraper):
url = 'http://www.namirdeiter.com/'
stripUrl = url + 'comics/index.php?date=%s'
2012-12-04 06:02:40 +00:00
imageSearch = compile(tagre("img", "src", r"'?(http://www\.namirdeiter\.com/comics/\d+\.jpg)'?", quote=""))
2012-11-21 20:57:26 +00:00
prevSearch = compile(tagre("a", "href", r'(http://www\.namirdeiter\.com/comics/index\.php\?date=\d+)', quote="'")+"Previous")
2012-06-20 19:58:13 +00:00
help = 'Index format: yyyymmdd'
2013-02-06 06:03:29 +00:00
class Nedroid(_BasicScraper):
url = 'http://nedroid.com/'
stripUrl = url + '%s/'
imageSearch = compile(tagre("img", "src", r'(http://nedroid\.com/comics/[^"]+)'))
prevSearch = compile(tagre("a", "href", r'(http://nedroid\.com/\d+/\d+/[^"]+)', after="prev"))
help = 'Index format: yyyy/mm/dd/name'
2012-06-20 19:58:13 +00:00
class NeoEarth(_BasicScraper):
url = 'http://www.neo-earth.com/NE/'
stripUrl = url + 'index.php?date=%s'
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 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
prevSearch = None
help = 'Index format: none'
2012-06-20 19:58:13 +00:00
class NewWorld(_BasicScraper):
url = 'http://www.tfsnewworld.com/'
stripUrl = url + '%s'
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 Nicky510(_BasicScraper):
url = 'http://www.nickyitis.com/'
stripUrl = url + '%s/'
2012-11-21 20:57:26 +00:00
imageSearch = compile(tagre("img", "src", r'(http://www\.nickyitis\.com/comics/[^"]+)'))
prevSearch = compile(tagre("a", "href", r'(http://www\.nickyitis\.com/comic/[^"]+)', after="Previous"))
help = 'Index format: stripname'
2012-06-20 19:58:13 +00:00
class NoNeedForBushido(_BasicScraper):
url = 'http://noneedforbushido.com/latest/'
2012-12-02 17:35:06 +00:00
stripUrl = 'http://noneedforbushido.com/%s/'
2012-11-21 20:57:26 +00:00
imageSearch = compile(tagre("img", "src", r'(http://noneedforbushido\.com/comics/comic/[^"]+)'))
prevSearch = compile(tagre("a", "href", r'(http://noneedforbushido\.com/[^"]+)', after="previous-comic-link"))
2012-06-20 19:58:13 +00:00
help = 'Index format: yyyy/comic/nnn'
class Nukees(_BasicScraper):
url = 'http://www.nukees.com/'
stripUrl = url + 'd/%s'
2012-06-20 19:58:13 +00:00
imageSearch = compile(r'"comic".+?"(/comics/.+?)"')
prevSearch = compile(r'"(/d/.+?)".+?previous')
help = 'Index format: yyyymmdd.html'
2012-12-04 06:02:40 +00:00
class NekoTheKitty(_BasicScraper):
url = 'http://www.nekothekitty.net/'
stripUrl = url + 'comics/%s'
starter = bounceStarter(url, compile(tagre("a", "href", r'(http://www\.nekothekitty\.net/comics/[^"]+)') +
2012-12-04 06:02:40 +00:00
tagre("img", "src", r'http://www\.nekothekitty\.net/files/smallnext.png')))
imageSearch = compile(tagre("img", "src", r'(http://(?:img\d+|www)\.smackjeeves\.com/images/uploaded/comics/[^"]+)'))
prevSearch = compile(tagre("a", "href", r'(http://www\.nekothekitty\.net/comics/[^"]+)') +
2012-11-21 20:57:26 +00:00
tagre("img", "src", r'http://www\.nekothekitty\.net/files/smallprev.png'))
2012-12-04 06:02:40 +00:00
help = 'Index format: n/n-name'
2012-06-20 19:58:13 +00:00
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'
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,
2012-11-21 20:57:26 +00:00
compile(tagre("a", "href", r'([^"]*toondb/\d+\.html)')))
2012-06-20 19:58:13 +00:00
class Nodwick(_BasicScraper):
url = 'http://comic.nodwick.com/'
stripUrl = url + "?p=%s"
2012-11-21 20:57:26 +00:00
imageSearch = compile(tagre("img", "src", r'(http://comic\.nodwick\.com/nodwickstrips/[^"]+)'))
prevSearch = compile(tagre("a", "href", r'(http://comic\.nodwick\.com/\?p=\d+)', after="prev"))
help = 'Index format: stripnumber'
2012-06-20 19:58:13 +00:00
class NekkoAndJoruba(_BasicScraper):
url = 'http://www.nekkoandjoruba.com/'
stripUrl = url + '?p=%s'
2012-06-20 19:58:13 +00:00
imageSearch = compile(r'<img src="(http://www.nekkoandjoruba.com/comics/.+?)"')
prevSearch = compile(r'<a href="(.+?)">&lsaquo;</a>')
help = 'Index format: nnn'
class NobodyScores(_BasicScraper):
url = 'http://nobodyscores.loosenutstudio.com/'
stripUrl = url + 'index.php?id=%s'
2012-12-04 06:02:40 +00:00
imageSearch = compile(tagre("img", "src", r'(http://nobodyscores\.loosenutstudio\.com/comix/[^"]+)'))
multipleImagesPerStrip = True
prevSearch = compile(r'<a href="(http://nobodyscores\.loosenutstudio\.com/index.php.+?)">the one before </a>')
2012-06-20 19:58:13 +00:00
help = 'Index format: nnn'