2020-04-18 11:45:44 +00:00
|
|
|
# SPDX-License-Identifier: MIT
|
2016-10-28 22:21:41 +00:00
|
|
|
# Copyright (C) 2004-2008 Tristan Seligmann and Jonathan Jacobs
|
2016-03-31 21:13:54 +00:00
|
|
|
# Copyright (C) 2012-2014 Bastian Kleineidam
|
2022-06-06 10:08:32 +00:00
|
|
|
# Copyright (C) 2015-2022 Tobias Gruetzmacher
|
|
|
|
from ..scraper import ParserScraper
|
2015-05-31 11:23:02 +00:00
|
|
|
|
2016-03-31 21:13:54 +00:00
|
|
|
|
2022-06-06 10:08:32 +00:00
|
|
|
class Footloose(ParserScraper):
|
2015-11-04 23:03:13 +00:00
|
|
|
url = 'http://footloosecomic.com/footloose.php'
|
2016-03-31 21:13:54 +00:00
|
|
|
imageSearch = '//body/p[1]//img'
|
|
|
|
prevSearch = '//body/a[2]'
|
|
|
|
|
2015-05-31 11:23:02 +00:00
|
|
|
|
2015-11-04 23:03:13 +00:00
|
|
|
class Cherry(Footloose):
|
|
|
|
url = 'http://footloosecomic.com/cherry/index.php'
|
2015-05-31 11:23:02 +00:00
|
|
|
|
2016-03-31 21:13:54 +00:00
|
|
|
|
2015-11-04 23:03:13 +00:00
|
|
|
class Desigaspring(Footloose):
|
|
|
|
url = 'http://footloosecomic.com/dspring/index.php'
|