Add Cloudscratcher

This commit is contained in:
Techwolf 2019-07-05 01:30:08 -07:00 committed by Tobias Gruetzmacher
parent 138f6001db
commit a259a65d83

View file

@ -182,6 +182,16 @@ class CigarroAndCerveja(_ParserScraper):
prevSearch = '//a[contains(text()," Prev")]',
class Cloudscratcher(_ParserScraper):
url = 'http://www.cloudscratcher.com/'
stripUrl = url + 'comic.php?page=%s'
firstStripUrl = stripUrl % '1'
imageSearch = '//div[@id="main_content"]//img[contains(@src, "comic")]'
prevSearch = '//a[./img[contains(@src, "previous-page")]]'
latestSearch = '//a[@alt="Newest_Page"]'
starter = indirectStarter
class Collar6(_TumblrScraper):
url = 'http://collar6.tumblr.com/'
firstStripUrl = url + 'post/138117470810/the-very-first-strip-from-when-i-thought-it-was'