2015-05-31 11:23:02 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
2016-03-31 21:13:54 +00:00
|
|
|
# Copyright (C) 2004-2005 Tristan Seligmann and Jonathan Jacobs
|
|
|
|
# Copyright (C) 2012-2014 Bastian Kleineidam
|
|
|
|
# Copyright (C) 2015-2016 Tobias Gruetzmacher
|
|
|
|
|
|
|
|
from __future__ import absolute_import, division, print_function
|
2015-11-04 23:03:13 +00:00
|
|
|
from ..scraper import _ParserScraper
|
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 Footloose(_ParserScraper):
|
|
|
|
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'
|