Add comics from catomix.com.
This commit is contained in:
parent
a6cf4e7040
commit
89cfd9d310
2 changed files with 10 additions and 0 deletions
|
@ -26,6 +26,11 @@ class RalfTheDestroyer(_WordPressScraper):
|
||||||
url = 'http://ralfthedestroyer.com/'
|
url = 'http://ralfthedestroyer.com/'
|
||||||
|
|
||||||
|
|
||||||
|
class RaynaOnTheRiver(_WordPressScraper):
|
||||||
|
url = 'http://www.catomix.com/rayna/'
|
||||||
|
firstStripUrl = url + 'archives/comic/teaser-poster'
|
||||||
|
|
||||||
|
|
||||||
class RealLife(_WordPressScraper):
|
class RealLife(_WordPressScraper):
|
||||||
url = 'http://reallifecomics.com/'
|
url = 'http://reallifecomics.com/'
|
||||||
stripUrl = url + 'comic.php?comic=%s'
|
stripUrl = url + 'comic.php?comic=%s'
|
||||||
|
|
|
@ -54,3 +54,8 @@ class Unsounded(_BasicScraper):
|
||||||
"""Get comic strip URL from index."""
|
"""Get comic strip URL from index."""
|
||||||
chapter, num = index.split('-')
|
chapter, num = index.split('-')
|
||||||
return self.stripUrl % (chapter, chapter, num)
|
return self.stripUrl % (chapter, chapter, num)
|
||||||
|
|
||||||
|
|
||||||
|
class UrgentTransformationCrisis(_WordPressScraper):
|
||||||
|
url = 'http://www.catomix.com/utc/'
|
||||||
|
firstStripUrl = url + 'comic/cover1'
|
||||||
|
|
Loading…
Reference in a new issue