Add YoshSaga
This commit is contained in:
parent
3503a2bede
commit
e54d153ca7
1 changed files with 9 additions and 0 deletions
|
@ -5,8 +5,17 @@
|
||||||
|
|
||||||
from __future__ import absolute_import, division, print_function
|
from __future__ import absolute_import, division, print_function
|
||||||
|
|
||||||
|
from ..scraper import _ParserScraper
|
||||||
from .common import _WordPressScraper
|
from .common import _WordPressScraper
|
||||||
|
|
||||||
|
|
||||||
class YAFGC(_WordPressScraper):
|
class YAFGC(_WordPressScraper):
|
||||||
url = 'http://yafgc.net/'
|
url = 'http://yafgc.net/'
|
||||||
|
|
||||||
|
|
||||||
|
class YoshSaga(_ParserScraper):
|
||||||
|
url = 'https://www.yoshsaga.com/'
|
||||||
|
stripUrl = url + 'comic/%s/'
|
||||||
|
firstStripUrl = stripUrl % 'introduction'
|
||||||
|
imageSearch = '//div[@class="webcomic-image"]//img'
|
||||||
|
prevSearch = '//a[contains(@class, "previous-webcomic-link")]'
|
||||||
|
|
Loading…
Reference in a new issue