dosage/dosagelib/plugins/footloosecomic.py
2016-10-29 00:21:41 +02:00

22 lines
608 B
Python

# -*- coding: utf-8 -*-
# Copyright (C) 2004-2008 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
from ..scraper import _ParserScraper
class Footloose(_ParserScraper):
url = 'http://footloosecomic.com/footloose.php'
imageSearch = '//body/p[1]//img'
prevSearch = '//body/a[2]'
class Cherry(Footloose):
url = 'http://footloosecomic.com/cherry/index.php'
class Desigaspring(Footloose):
url = 'http://footloosecomic.com/dspring/index.php'