Add DarkWhite
This commit is contained in:
parent
0a81948386
commit
4c495b78f7
1 changed files with 7 additions and 1 deletions
|
@ -10,7 +10,7 @@ from re import compile, escape
|
|||
from ..scraper import _BasicScraper, _ParserScraper
|
||||
from ..helpers import indirectStarter, bounceStarter, xpath_class
|
||||
from ..util import tagre
|
||||
from .common import _ComicControlScraper, _WPNaviIn
|
||||
from .common import _ComicControlScraper, _WordPressScraper, _WPNaviIn
|
||||
|
||||
|
||||
class DamnLol(_ParserScraper):
|
||||
|
@ -43,6 +43,12 @@ class DangerouslyChloe(_ComicControlScraper):
|
|||
firstStripUrl = url + 'strips-dc/Chapter_1_-_That_damned_girl'
|
||||
|
||||
|
||||
class DarkWhite(_WordPressScraper):
|
||||
url = 'https://www.darkwhitecomic.com/'
|
||||
stripUrl = url + 'comic/%s/'
|
||||
firstStripUrl = stripUrl % 'chapter-1-sleep'
|
||||
|
||||
|
||||
class DarthsAndDroids(_BasicScraper):
|
||||
url = 'http://www.darthsanddroids.net/'
|
||||
stripUrl = url + 'episodes/%s.html'
|
||||
|
|
Loading…
Reference in a new issue