Add Cloudscratcher
This commit is contained in:
parent
138f6001db
commit
a259a65d83
1 changed files with 10 additions and 0 deletions
|
@ -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'
|
||||
|
|
Loading…
Reference in a new issue