dosage/dosagelib/plugins/comicpress.py

20 lines
568 B
Python
Raw Normal View History

2015-05-15 12:15:32 +00:00
# -*- coding: utf-8 -*-
from ..scraper import make_scraper, _ParserScraper
def add(name, url, firstUrl=None, lang=None):
attrs = dict(
name = name,
url = url,
imageSearch = '//div[@id="comic"]//img',
2015-05-20 11:08:02 +00:00
prevSearch = u'//a[contains(text(), " Prev")]',
2015-05-15 12:15:32 +00:00
)
if lang:
attrs['lang'] = lang
if firstUrl:
attrs['firstUrl'] = url + firstUrl
globals()[name] = make_scraper(name, _ParserScraper, **attrs)
2015-05-20 11:16:54 +00:00
add('CourtingDisaster', 'http://www.courting-disaster.com/', 'comic/courting-disaster-17/')
2015-05-15 12:15:32 +00:00
add('Hipsters', 'http://www.hipsters-comic.com/', 'comic/hip01/')