21 lines
659 B
Python
21 lines
659 B
Python
# -*- coding: utf-8 -*-
|
|
# Copyright (C) 2004-2008 Tristan Seligmann and Jonathan Jacobs
|
|
# Copyright (C) 2012-2014 Bastian Kleineidam
|
|
# Copyright (C) 2015-2019 Tobias Gruetzmacher
|
|
|
|
from __future__ import absolute_import, division, print_function
|
|
|
|
from ..scraper import _ParserScraper
|
|
from .common import _WordPressScraper
|
|
|
|
|
|
class YAFGC(_WordPressScraper):
|
|
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")]'
|