dosage/dosagelib/plugins/num.py
2013-04-14 09:02:14 +02:00

20 lines
733 B
Python

# -*- coding: iso-8859-1 -*-
# Copyright (C) 2004-2005 Tristan Seligmann and Jonathan Jacobs
# Copyright (C) 2012-2013 Bastian Kleineidam
from re import compile
from ..util import tagre
from ..scraper import _BasicScraper
class NineteenNinetySeven(_BasicScraper):
description = u'1977 the Comic - Sex, Drugs and Rock and Roll Just Not in That Order'
name = '1997'
url = 'http://www.1977thecomic.com/'
stripUrl = url + '%s/'
firstStripUrl = stripUrl % '1977-comics/from-the-beginning-part-1'
imageSearch = compile(tagre("img", "src", r'(http://www\.1977thecomic\.com/comics-1977/[^"]+)'))
prevSearch = compile(tagre("a", "href", r'([^"]+)')+"Previous")
help = 'Index format: yyyy/mm/dd/strip-name'