dosage/dosagelib/plugins/nuklearpower.py

43 lines
928 B
Python
Raw Normal View History

# -*- coding: utf-8 -*-
2012-11-26 06:13:32 +00:00
# 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) 2016 Tobias Gruetzmacher
2012-11-26 06:13:32 +00:00
from ..scraper import _ParserScraper
2012-11-26 06:13:32 +00:00
class _NuklearPower(_ParserScraper):
url = 'http://www.nuklearpower.com/'
prevSearch = '//a[@rel="prev"]'
imageSearch = '//div[@id="comic"]/img'
2012-11-26 06:13:32 +00:00
@classmethod
def starter(cls):
return cls.url + cls.path + '/'
2012-11-26 06:13:32 +00:00
@classmethod
def getName(cls):
return 'NuklearPower/' + cls.__name__[2:]
2012-11-26 06:13:32 +00:00
class NP8BitTheater(_NuklearPower):
path = '8-bit-theater'
class NPAtomicRobo(_NuklearPower):
url = 'http://www.atomic-robo.com/'
imageSearch = '//img[@id="cc-comic"]'
path = 'atomicrobo'
class NPHowIKilledYourMaster(_NuklearPower):
path = 'hikym'
class NPTheDreadful(_NuklearPower):
path = 'dreadful'
class NPWarbot(_NuklearPower):
path = 'warbot'