Add comics from catomix.com.

This commit is contained in:
Tobias Gruetzmacher 2016-05-16 23:55:41 +02:00
parent a6cf4e7040
commit 89cfd9d310
2 changed files with 10 additions and 0 deletions

View file

@ -26,6 +26,11 @@ class RalfTheDestroyer(_WordPressScraper):
url = 'http://ralfthedestroyer.com/'
class RaynaOnTheRiver(_WordPressScraper):
url = 'http://www.catomix.com/rayna/'
firstStripUrl = url + 'archives/comic/teaser-poster'
class RealLife(_WordPressScraper):
url = 'http://reallifecomics.com/'
stripUrl = url + 'comic.php?comic=%s'

View file

@ -54,3 +54,8 @@ class Unsounded(_BasicScraper):
"""Get comic strip URL from index."""
chapter, num = index.split('-')
return self.stripUrl % (chapter, chapter, num)
class UrgentTransformationCrisis(_WordPressScraper):
url = 'http://www.catomix.com/utc/'
firstStripUrl = url + 'comic/cover1'