Cleanup
This commit is contained in:
parent
3a3a800798
commit
6c0ad90c15
3 changed files with 1 additions and 5 deletions
|
@ -134,4 +134,3 @@ class GreystoneInn(_BasicScraper):
|
||||||
imageSearch=compile(tagre("img", "src", r'(/comic[s|/][^"]+)'))
|
imageSearch=compile(tagre("img", "src", r'(/comic[s|/][^"]+)'))
|
||||||
prevSearch=compile(tagre("a", "href", r'[^"]*(/d/\d+\.s?html)')+r"[^>]+/images/(?:nav_02|previous_day)\.gif")
|
prevSearch=compile(tagre("a", "href", r'[^"]*(/d/\d+\.s?html)')+r"[^>]+/images/(?:nav_02|previous_day)\.gif")
|
||||||
help='Index format: yyyymmdd'
|
help='Index format: yyyymmdd'
|
||||||
|
|
||||||
|
|
|
@ -184,6 +184,7 @@ class SomethingPositive(_BasicScraper):
|
||||||
|
|
||||||
|
|
||||||
class SexyLosers(_BasicScraper):
|
class SexyLosers(_BasicScraper):
|
||||||
|
adult = True
|
||||||
stripUrl = 'http://www.sexylosers.com/%s.html'
|
stripUrl = 'http://www.sexylosers.com/%s.html'
|
||||||
imageSearch = compile(r'<img src\s*=\s*"\s*(comics/[\w\.]+?)"', IGNORECASE)
|
imageSearch = compile(r'<img src\s*=\s*"\s*(comics/[\w\.]+?)"', IGNORECASE)
|
||||||
prevSearch = compile(r'<a href="(/\d{3}\.\w+?)"><font color = FFAAAA><<', IGNORECASE)
|
prevSearch = compile(r'<a href="(/\d{3}\.\w+?)"><font color = FFAAAA><<', IGNORECASE)
|
||||||
|
@ -198,7 +199,6 @@ class SexyLosers(_BasicScraper):
|
||||||
return index + '-' + title
|
return index + '-' + title
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
class StarCrossdDestiny(_BasicScraper):
|
class StarCrossdDestiny(_BasicScraper):
|
||||||
latestUrl = 'http://www.starcrossd.net/comic.html'
|
latestUrl = 'http://www.starcrossd.net/comic.html'
|
||||||
stripUrl = 'http://www.starcrossd.net/archives/%s.html'
|
stripUrl = 'http://www.starcrossd.net/archives/%s.html'
|
||||||
|
@ -241,4 +241,3 @@ class SMBC(_BasicScraper):
|
||||||
imageSearch = compile(r'<img src=\'(.+?\d{8}.\w{1,4})\'>')
|
imageSearch = compile(r'<img src=\'(.+?\d{8}.\w{1,4})\'>')
|
||||||
prevSearch = compile(r'131,13,216,84"\n\s+href="(.+?)#comic"\n>', MULTILINE)
|
prevSearch = compile(r'131,13,216,84"\n\s+href="(.+?)#comic"\n>', MULTILINE)
|
||||||
help = 'Index format: nnnn'
|
help = 'Index format: nnnn'
|
||||||
|
|
||||||
|
|
|
@ -22,5 +22,3 @@ class YouSayItFirst(_BasicScraper):
|
||||||
imageSearch = compile(tagre("img", "src", r"(http://www\.yousayitfirst\.com/comics/[^>']+)", quote="'?"))
|
imageSearch = compile(tagre("img", "src", r"(http://www\.yousayitfirst\.com/comics/[^>']+)", quote="'?"))
|
||||||
prevSearch = compile(tagre("a", "href", r'(http://www\.yousayitfirst\.com/comics/index\.php\?date=\d+)', quote="'") + "Previous")
|
prevSearch = compile(tagre("a", "href", r'(http://www\.yousayitfirst\.com/comics/index\.php\?date=\d+)', quote="'") + "Previous")
|
||||||
help = 'Index format: yyyymmdd'
|
help = 'Index format: yyyymmdd'
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue