Add TheDepths
This commit is contained in:
parent
b4bc7f27c6
commit
d889cb7d74
1 changed files with 16 additions and 0 deletions
|
@ -56,6 +56,22 @@ class TheClassMenagerie(_ParserScraper):
|
||||||
endOfLife = True
|
endOfLife = True
|
||||||
|
|
||||||
|
|
||||||
|
class TheDepths(_WPWebcomic):
|
||||||
|
url = 'https://www.thedepthscomic.com/'
|
||||||
|
stripUrl = url + 'comic/%s/'
|
||||||
|
firstStripUrl = stripUrl % 'page-01'
|
||||||
|
imageSearch = '//div[contains(@class, "webcomic-media")]//img'
|
||||||
|
adult = True
|
||||||
|
|
||||||
|
def namer(self, imageUrl, pageUrl):
|
||||||
|
# Fix inconsistent filenames
|
||||||
|
filename = imageUrl.rsplit('/', 1)[-1]
|
||||||
|
filename = filename.replace('pg', 'page_')
|
||||||
|
filename = filename.replace('page_', 'the_depths_')
|
||||||
|
filename = filename.replace('-web', '')
|
||||||
|
return filename
|
||||||
|
|
||||||
|
|
||||||
class TheDevilsPanties(_WPNavi):
|
class TheDevilsPanties(_WPNavi):
|
||||||
url = 'https://thedevilspanties.com/'
|
url = 'https://thedevilspanties.com/'
|
||||||
stripUrl = url + 'archives/%s'
|
stripUrl = url + 'archives/%s'
|
||||||
|
|
Loading…
Reference in a new issue