2016-03-17 22:19:52 +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
|
2016-05-20 23:18:42 +00:00
|
|
|
# Copyright (C) 2015-2016 Tobias Gruetzmacher
|
|
|
|
|
|
|
|
from __future__ import absolute_import, division, print_function
|
2012-11-26 06:13:32 +00:00
|
|
|
|
2016-03-17 22:19:52 +00:00
|
|
|
from ..scraper import _ParserScraper
|
2012-11-26 06:13:32 +00:00
|
|
|
|
2012-11-28 17:15:12 +00:00
|
|
|
|
2016-03-17 22:19:52 +00:00
|
|
|
class _NuklearPower(_ParserScraper):
|
|
|
|
prevSearch = '//a[@rel="prev"]'
|
|
|
|
imageSearch = '//div[@id="comic"]/img'
|
2012-11-26 06:13:32 +00:00
|
|
|
|
2016-05-20 23:18:42 +00:00
|
|
|
def __init__(self, name):
|
|
|
|
super(_NuklearPower, self).__init__('NuklearPower/' + name[2:])
|
|
|
|
|
2016-04-13 21:28:43 +00:00
|
|
|
@property
|
|
|
|
def url(self):
|
|
|
|
return 'http://www.nuklearpower.com/' + self.path + '/'
|
2012-11-26 06:13:32 +00:00
|
|
|
|
2016-03-17 22:19:52 +00:00
|
|
|
|
|
|
|
class NP8BitTheater(_NuklearPower):
|
|
|
|
path = '8-bit-theater'
|
|
|
|
|
|
|
|
|
|
|
|
class NPAtomicRobo(_NuklearPower):
|
|
|
|
url = 'http://www.atomic-robo.com/'
|
|
|
|
imageSearch = '//img[@id="cc-comic"]'
|
|
|
|
|
|
|
|
|
|
|
|
class NPHowIKilledYourMaster(_NuklearPower):
|
|
|
|
path = 'hikym'
|
|
|
|
|
|
|
|
|
|
|
|
class NPTheDreadful(_NuklearPower):
|
|
|
|
path = 'dreadful'
|
|
|
|
|
|
|
|
|
|
|
|
class NPWarbot(_NuklearPower):
|
|
|
|
path = 'warbot'
|