2016-03-17 23:19:52 +01:00
|
|
|
# -*- coding: utf-8 -*-
|
2012-11-26 07:13:32 +01:00
|
|
|
# Copyright (C) 2004-2005 Tristan Seligmann and Jonathan Jacobs
|
2014-01-05 16:50:57 +01:00
|
|
|
# Copyright (C) 2012-2014 Bastian Kleineidam
|
2016-05-21 01:18:42 +02:00
|
|
|
# Copyright (C) 2015-2016 Tobias Gruetzmacher
|
|
|
|
|
|
|
|
from __future__ import absolute_import, division, print_function
|
2012-11-26 07:13:32 +01:00
|
|
|
|
2016-03-17 23:19:52 +01:00
|
|
|
from ..scraper import _ParserScraper
|
2012-11-26 07:13:32 +01:00
|
|
|
|
2012-11-28 18:15:12 +01:00
|
|
|
|
2016-03-17 23:19:52 +01:00
|
|
|
class _NuklearPower(_ParserScraper):
|
|
|
|
prevSearch = '//a[@rel="prev"]'
|
|
|
|
imageSearch = '//div[@id="comic"]/img'
|
2012-11-26 07:13:32 +01:00
|
|
|
|
2016-05-21 01:18:42 +02:00
|
|
|
def __init__(self, name):
|
|
|
|
super(_NuklearPower, self).__init__('NuklearPower/' + name[2:])
|
|
|
|
|
2016-04-13 23:28:43 +02:00
|
|
|
@property
|
|
|
|
def url(self):
|
|
|
|
return 'http://www.nuklearpower.com/' + self.path + '/'
|
2012-11-26 07:13:32 +01:00
|
|
|
|
2016-03-17 23:19:52 +01: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'
|