Added support for Tripping Over You comic (#130)
This commit is contained in:
parent
b40b7b3288
commit
ffbf494765
1 changed files with 9 additions and 0 deletions
|
@ -148,6 +148,15 @@ class TracyAndTristan(_BasicScraper):
|
||||||
help = 'Index format: number'
|
help = 'Index format: number'
|
||||||
|
|
||||||
|
|
||||||
|
class TrippingOverYou(_BasicScraper):
|
||||||
|
url = 'http://www.trippingoveryou.com/'
|
||||||
|
stripUrl = url + 'comic/%s'
|
||||||
|
firstStripUrl = stripUrl % 'wiggle-room'
|
||||||
|
imageSearch = compile(tagre("img", "src", r'([^"]+/comics/[^"]+)'))
|
||||||
|
prevSearch = compile(r'<a class="cc-prev" rel="prev" href="(.+?)">')
|
||||||
|
help = 'Index format: stripname'
|
||||||
|
|
||||||
|
|
||||||
class TumbleDryComics(_WordPressScraper):
|
class TumbleDryComics(_WordPressScraper):
|
||||||
url = 'http://tumbledrycomics.com/'
|
url = 'http://tumbledrycomics.com/'
|
||||||
stripUrl = url + 'comic/%s/'
|
stripUrl = url + 'comic/%s/'
|
||||||
|
|
Loading…
Reference in a new issue