fixed DemolitionSquad
This commit is contained in:
parent
605c5f8619
commit
9adb020fc2
1 changed files with 3 additions and 4 deletions
|
@ -127,13 +127,12 @@ class DeepFried(_BasicScraper):
|
||||||
help = 'Index format: none'
|
help = 'Index format: none'
|
||||||
|
|
||||||
|
|
||||||
class DemolitionSquad(_BasicScraper):
|
class DemolitionSquad(_ParserScraper):
|
||||||
url = 'http://www.demolitionsquad.de/'
|
url = 'http://www.demolitionsquad.de/'
|
||||||
stripUrl = url + '?comicbeitrag=%s'
|
stripUrl = url + '?comicbeitrag=%s'
|
||||||
firstStripUrl = stripUrl % '181'
|
firstStripUrl = stripUrl % '181'
|
||||||
imageSearch = compile(tagre("img", "src", r'(uploads/pics/[^"]+)'))
|
imageSearch = '//img[contains(@src,"uploads/pics/")]'
|
||||||
prevSearch = compile(tagre("a", "href", r'(\?comicbeitrag=[^"]+)') +
|
prevSearch = '//img[@name="zuruck"]/..'
|
||||||
tagre("img", "src", r'grafik/system/blaettern_zuruck_n\.gif'))
|
|
||||||
help = 'Index format: number'
|
help = 'Index format: number'
|
||||||
lang = 'de'
|
lang = 'de'
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue