Remove duplicate comic entries.
This commit is contained in:
parent
4047859c5b
commit
61a02630b8
3 changed files with 5 additions and 29 deletions
|
@ -63,11 +63,11 @@ class Blip(_BasicScraper):
|
|||
|
||||
|
||||
class BlueCrashKit(_BasicScraper):
|
||||
url = 'http://www.bluecrashkit.com/cheese/'
|
||||
stripUrl = url + 'node/%s'
|
||||
imageSearch = compile(r'(/cheese/files/comics/.+?)"')
|
||||
prevSearch = compile(r'(/cheese/node/.+?)".+?previous')
|
||||
help = 'Index format: non'
|
||||
url = 'http://robhamm.com/bluecrashkit/'
|
||||
stripUrl = url + 'comics/blue-crash-kit/%s'
|
||||
imageSearch = compile(tagre("img", "src", r'(http://robhamm\.com/bluecrashkit/sites/default/files/comics/[^"]+)'))
|
||||
prevSearch = compile(r'<li class="previous"><a href="([^"]+)">')
|
||||
help = 'Index format: yyyy-mm-dd'
|
||||
|
||||
|
||||
class BMovieComic(_BasicScraper):
|
||||
|
@ -236,14 +236,6 @@ class BrightlyWound(_BasicScraper):
|
|||
help = 'Index format: nnn'
|
||||
|
||||
|
||||
class BlueCrashKit(_BasicScraper):
|
||||
url = 'http://robhamm.com/bluecrashkit/'
|
||||
stripUrl = url + 'comics/blue-crash-kit/%s'
|
||||
imageSearch = compile(tagre("img", "src", r'(http://robhamm\.com/bluecrashkit/sites/default/files/comics/[^"]+)'))
|
||||
prevSearch = compile(r'<li class="previous"><a href="([^"]+)">')
|
||||
help = 'Index format: yyyy-mm-dd'
|
||||
|
||||
|
||||
class BloodBound(_BasicScraper):
|
||||
url = 'http://bloodboundcomic.com/'
|
||||
stripUrl = url + '%s'
|
||||
|
|
|
@ -107,14 +107,6 @@ class Gunshow(_BasicScraper):
|
|||
help = 'Index format: n'
|
||||
|
||||
|
||||
class GleefulNihilism(_BasicScraper):
|
||||
url = 'http://gleefulnihilism.com/'
|
||||
stripUrl = url + 'comics/%s/'
|
||||
imageSearch = compile(tagre("img", "src", r'(http://gleefulnihilism\.com/comics/[^"]+)'))
|
||||
prevSearch = compile(tagre("a", "href", r'(http://gleefulnihilism\.com/comics/[^"]+)', after="Previous"))
|
||||
help = 'Index format: yyyy/mm/dd/strip-name'
|
||||
|
||||
|
||||
class GastroPhobia(_BasicScraper):
|
||||
url = 'http://www.gastrophobia.com/'
|
||||
stripUrl = url + 'index.php?date=%s'
|
||||
|
|
|
@ -32,14 +32,6 @@ class WhiteNinja(_BasicScraper):
|
|||
help = 'Index format: s (comic name)'
|
||||
|
||||
|
||||
class WhiteNoise(_BasicScraper):
|
||||
url = 'http://www.wncomic.com/archive.php'
|
||||
stripUrl = 'http://www.wncomic.com/archive_comments.php?strip_id=%s'
|
||||
imageSearch = compile(r'(istrip_files/strips/.+?)"')
|
||||
prevSearch = compile(r'First .+?"(archive.+?)".+?top_back')
|
||||
help = 'Index format: n'
|
||||
|
||||
|
||||
class WhyTheLongFace(_BasicScraper):
|
||||
url = 'http://www.absurdnotions.org/wtlf200709.html'
|
||||
stripUrl = 'http://www.absurdnotions.org/wtlf%s.html'
|
||||
|
|
Loading…
Reference in a new issue