Added GeeksNextDoor.

This commit is contained in:
Bastian Kleineidam 2013-03-11 22:51:45 +01:00
parent 737f1e189d
commit 58abcb282d
2 changed files with 10 additions and 1 deletions

View file

@ -2,7 +2,7 @@ Dosage 1.14 (released xx.xx.2013)
Features:
- comics: Added KeenSpot comic strips, enable ComicGenesis
comic strips, added FullFrontalNerdity.
comic strips, added FullFrontalNerdity, GeeksNextDoor.
Dosage 1.13 (released 11.3.2013)

View file

@ -43,6 +43,15 @@ class Geeks(_BasicScraper):
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):
url = 'http://girlgeniusonline.com/comic.php'
stripUrl = url + '?date=%s'