Remove some vanished modules.
This commit is contained in:
parent
dce0a30956
commit
c4a184d173
4 changed files with 6 additions and 38 deletions
|
@ -1,7 +1,7 @@
|
||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
# Copyright (C) 2004-2008 Tristan Seligmann and Jonathan Jacobs
|
# Copyright (C) 2004-2008 Tristan Seligmann and Jonathan Jacobs
|
||||||
# Copyright (C) 2012-2014 Bastian Kleineidam
|
# Copyright (C) 2012-2014 Bastian Kleineidam
|
||||||
# Copyright (C) 2015-2016 Tobias Gruetzmacher
|
# Copyright (C) 2015-2017 Tobias Gruetzmacher
|
||||||
|
|
||||||
from __future__ import absolute_import, division, print_function
|
from __future__ import absolute_import, division, print_function
|
||||||
|
|
||||||
|
@ -267,15 +267,6 @@ class Ashes(_WordPressScraper):
|
||||||
starter = indirectStarter
|
starter = indirectStarter
|
||||||
|
|
||||||
|
|
||||||
class ASofterWorld(_ParserScraper):
|
|
||||||
url = 'http://www.asofterworld.com/'
|
|
||||||
stripUrl = url + 'index.php?id=%s'
|
|
||||||
firstStripUrl = stripUrl % '1'
|
|
||||||
imageSearch = '//div[@id="comicimg"]//img'
|
|
||||||
prevSearch = '//div[@id="previous"]/a'
|
|
||||||
help = 'Index format: n (unpadded)'
|
|
||||||
|
|
||||||
|
|
||||||
class AstronomyPOTD(_ParserScraper):
|
class AstronomyPOTD(_ParserScraper):
|
||||||
baseUrl = 'http://apod.nasa.gov/apod/'
|
baseUrl = 'http://apod.nasa.gov/apod/'
|
||||||
url = baseUrl + 'astropix.html'
|
url = baseUrl + 'astropix.html'
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
# Copyright (C) 2004-2008 Tristan Seligmann and Jonathan Jacobs
|
# Copyright (C) 2004-2008 Tristan Seligmann and Jonathan Jacobs
|
||||||
# Copyright (C) 2012-2014 Bastian Kleineidam
|
# Copyright (C) 2012-2014 Bastian Kleineidam
|
||||||
# Copyright (C) 2015-2016 Tobias Gruetzmacher
|
# Copyright (C) 2015-2017 Tobias Gruetzmacher
|
||||||
|
|
||||||
from __future__ import absolute_import, division, print_function
|
from __future__ import absolute_import, division, print_function
|
||||||
|
|
||||||
|
@ -122,16 +122,6 @@ class BillyTheDunce(_ParserScraper):
|
||||||
starter = indirectStarter
|
starter = indirectStarter
|
||||||
|
|
||||||
|
|
||||||
class BizarreUprising(_BasicScraper):
|
|
||||||
url = 'http://www.bizarreuprising.com/'
|
|
||||||
stripUrl = url + 'view/%s'
|
|
||||||
firstStripUrl = stripUrl % '1/awakening-splash'
|
|
||||||
imageSearch = compile(tagre("img", "src", r'(comic/[^"]+)'))
|
|
||||||
prevSearch = compile(tagre("a", "href", r'(view/\d+/[^"]+)') +
|
|
||||||
tagre("img", "src", r'images/b_prev\.gif'))
|
|
||||||
help = 'Index format: n/name'
|
|
||||||
|
|
||||||
|
|
||||||
class BlankIt(_BasicScraper):
|
class BlankIt(_BasicScraper):
|
||||||
url = 'http://blankitcomics.com/'
|
url = 'http://blankitcomics.com/'
|
||||||
stripUrl = url + '%s/'
|
stripUrl = url + '%s/'
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
# Copyright (C) 2004-2008 Tristan Seligmann and Jonathan Jacobs
|
# Copyright (C) 2004-2008 Tristan Seligmann and Jonathan Jacobs
|
||||||
# Copyright (C) 2012-2014 Bastian Kleineidam
|
# Copyright (C) 2012-2014 Bastian Kleineidam
|
||||||
# Copyright (C) 2015-2016 Tobias Gruetzmacher
|
# Copyright (C) 2015-2017 Tobias Gruetzmacher
|
||||||
|
|
||||||
from __future__ import absolute_import, division, print_function
|
from __future__ import absolute_import, division, print_function
|
||||||
|
|
||||||
|
@ -13,17 +13,6 @@ from ..util import tagre
|
||||||
from .common import _TumblrScraper, _WordPressScraper, xpath_class
|
from .common import _TumblrScraper, _WordPressScraper, xpath_class
|
||||||
|
|
||||||
|
|
||||||
class Caggage(_BasicScraper):
|
|
||||||
url = 'http://caggagecomic.com/'
|
|
||||||
rurl = escape(url)
|
|
||||||
stripUrl = url + 'archives/%s'
|
|
||||||
firstStripUrl = stripUrl % '77'
|
|
||||||
imageSearch = compile(tagre("img", "src", r'(%scomics/[^"]+)' % rurl))
|
|
||||||
prevSearch = compile(tagre("a", "href", r'(%sarchives/\d+)' % rurl,
|
|
||||||
after="prev"))
|
|
||||||
help = 'Index format: number'
|
|
||||||
|
|
||||||
|
|
||||||
class CampComic(_BasicScraper):
|
class CampComic(_BasicScraper):
|
||||||
url = 'http://campcomic.com/comic/'
|
url = 'http://campcomic.com/comic/'
|
||||||
rurl = escape(url)
|
rurl = escape(url)
|
||||||
|
@ -116,11 +105,6 @@ class Catena(_WordPressScraper):
|
||||||
url = 'http://catenamanor.com/'
|
url = 'http://catenamanor.com/'
|
||||||
|
|
||||||
|
|
||||||
class CatNine(_WordPressScraper):
|
|
||||||
url = 'http://cat-nine.net'
|
|
||||||
firstStripUrl = 'http://cat-nine.net/comic/episode-1/first-day-for-everything/'
|
|
||||||
|
|
||||||
|
|
||||||
class CatsAndCameras(_WordPressScraper):
|
class CatsAndCameras(_WordPressScraper):
|
||||||
url = 'http://catsncameras.com/'
|
url = 'http://catsncameras.com/'
|
||||||
|
|
||||||
|
|
|
@ -36,8 +36,10 @@ class Removed(Scraper):
|
||||||
cls('Antics'),
|
cls('Antics'),
|
||||||
cls('Arcamax/BleekerTheRechargeableDog'),
|
cls('Arcamax/BleekerTheRechargeableDog'),
|
||||||
cls('ASkeweredParadise'),
|
cls('ASkeweredParadise'),
|
||||||
|
cls('ASofterWorld', 'block'),
|
||||||
cls('BackwaterPlanet'),
|
cls('BackwaterPlanet'),
|
||||||
cls('BigFatWhale'),
|
cls('BigFatWhale'),
|
||||||
|
cls('BizarreUprising'),
|
||||||
cls('Blip'),
|
cls('Blip'),
|
||||||
cls('BoxerHockey'),
|
cls('BoxerHockey'),
|
||||||
cls('BoyOnAStickAndSlither', 'jsh'),
|
cls('BoyOnAStickAndSlither', 'jsh'),
|
||||||
|
@ -45,6 +47,7 @@ class Removed(Scraper):
|
||||||
cls('BrentalFloss/FlossedInTime'),
|
cls('BrentalFloss/FlossedInTime'),
|
||||||
cls('BrentalFloss/GuestComics'),
|
cls('BrentalFloss/GuestComics'),
|
||||||
cls('BrightlyWound'),
|
cls('BrightlyWound'),
|
||||||
|
cls('Caggage'),
|
||||||
cls('CheckerboardNightmare'),
|
cls('CheckerboardNightmare'),
|
||||||
cls('ComicFury/30years'),
|
cls('ComicFury/30years'),
|
||||||
cls('ComicFury/AAB'),
|
cls('ComicFury/AAB'),
|
||||||
|
|
Loading…
Reference in a new issue