Fix GunnerkrigCourt
This commit is contained in:
parent
4ab5b67f2e
commit
8b04602c7b
1 changed files with 5 additions and 5 deletions
|
@ -80,11 +80,11 @@ class GoneWithTheBlastwave(_BasicScraper):
|
|||
|
||||
|
||||
class GunnerkrigCourt(_BasicScraper):
|
||||
latestUrl = 'http://www.gunnerkrigg.com/index2.php'
|
||||
stripUrl = 'http://www.gunnerkrigg.com/archive_page.php?comicID=%s'
|
||||
imageSearch = compile(r'<img src="(.+?//comics/.+?)"')
|
||||
prevSearch = compile(r'<.+?(/archive_page.php\?comicID=.+?)".+?prev')
|
||||
help = 'Index format: n'
|
||||
latestUrl = 'http://www.gunnerkrigg.com/'
|
||||
stripUrl = latestUrl + '?p=%s'
|
||||
imageSearch = compile(tagre("img", "src", r'(/comics/[^"]+)'))
|
||||
prevSearch = compile(tagre("a", "href", r'(\?p=\d+)') + tagre("img", "src", "http://www\.gunnerkrigg\.com/images/prev_a\.jpg"))
|
||||
help = 'Index format: number'
|
||||
|
||||
|
||||
class Gunshow(_BasicScraper):
|
||||
|
|
Loading…
Reference in a new issue