Added GeeksNextDoor.
This commit is contained in:
parent
737f1e189d
commit
58abcb282d
2 changed files with 10 additions and 1 deletions
|
@ -2,7 +2,7 @@ Dosage 1.14 (released xx.xx.2013)
|
||||||
|
|
||||||
Features:
|
Features:
|
||||||
- comics: Added KeenSpot comic strips, enable ComicGenesis
|
- comics: Added KeenSpot comic strips, enable ComicGenesis
|
||||||
comic strips, added FullFrontalNerdity.
|
comic strips, added FullFrontalNerdity, GeeksNextDoor.
|
||||||
|
|
||||||
|
|
||||||
Dosage 1.13 (released 11.3.2013)
|
Dosage 1.13 (released 11.3.2013)
|
||||||
|
|
|
@ -43,6 +43,15 @@ class Geeks(_BasicScraper):
|
||||||
help = 'Index format: nnn'
|
help = 'Index format: nnn'
|
||||||
|
|
||||||
|
|
||||||
|
class GeeksNextDoor(_BasicScraper):
|
||||||
|
url = 'http://www.geeksnextcomic.com/'
|
||||||
|
stripUrl = url + '%s.html'
|
||||||
|
imageSearch = compile(tagre("img", "src", r'(images/GND\d+[^"]+)'))
|
||||||
|
prevSearch = compile(tagre("a", "href", r'(\d+-\d+-\d+\.html)') +
|
||||||
|
tagre("img", "src", r'images/nav_prev\.png'))
|
||||||
|
help = 'Index format: yyyy-mm-dd'
|
||||||
|
|
||||||
|
|
||||||
class GirlGenius(_BasicScraper):
|
class GirlGenius(_BasicScraper):
|
||||||
url = 'http://girlgeniusonline.com/comic.php'
|
url = 'http://girlgeniusonline.com/comic.php'
|
||||||
stripUrl = url + '?date=%s'
|
stripUrl = url + '?date=%s'
|
||||||
|
|
Loading…
Reference in a new issue