2016-04-02 00:14:31 +02:00
|
|
|
# -*- coding: utf-8 -*-
|
2016-10-29 00:21:41 +02:00
|
|
|
# Copyright (C) 2004-2008 Tristan Seligmann and Jonathan Jacobs
|
2014-01-05 16:50:57 +01:00
|
|
|
# Copyright (C) 2012-2014 Bastian Kleineidam
|
2019-11-04 00:16:25 +01:00
|
|
|
# Copyright (C) 2015-2019 Tobias Gruetzmacher
|
2012-11-21 21:57:26 +01:00
|
|
|
|
2016-04-02 00:14:31 +02:00
|
|
|
from __future__ import absolute_import, division, print_function
|
2019-06-22 00:16:21 -07:00
|
|
|
|
2019-10-18 00:49:55 -07:00
|
|
|
from .common import _WordPressScraper, _WPWebcomic
|
2016-04-02 00:14:31 +02:00
|
|
|
|
|
|
|
|
|
|
|
class YAFGC(_WordPressScraper):
|
|
|
|
url = 'http://yafgc.net/'
|
2019-08-27 00:54:52 -07:00
|
|
|
|
|
|
|
|
2019-10-18 00:49:55 -07:00
|
|
|
class YoshSaga(_WPWebcomic):
|
2019-08-27 00:54:52 -07:00
|
|
|
url = 'https://www.yoshsaga.com/'
|
|
|
|
stripUrl = url + 'comic/%s/'
|
|
|
|
firstStripUrl = stripUrl % 'introduction'
|