Rename keenspot to comicgenesis and enable it.
This commit is contained in:
parent
f0eaba0f69
commit
a16bf6c16b
6 changed files with 1014 additions and 6 deletions
1004
dosagelib/plugins/comicgenesis.py
Normal file
1004
dosagelib/plugins/comicgenesis.py
Normal file
File diff suppressed because it is too large
Load diff
|
@ -62,6 +62,7 @@ def has_comic(name):
|
|||
("DrunkDuck/%s" % name).lower(),
|
||||
("GoComics/%s" % name).lower(),
|
||||
("KeenSpot/%s" % name).lower(),
|
||||
("ComicGenesis/%s" % name).lower(),
|
||||
("SmackJeeves/%s" % name).lower(),
|
||||
]
|
||||
for scraperclass in get_scraperclasses():
|
||||
|
|
|
@ -1,7 +1,8 @@
|
|||
#!/usr/bin/env python
|
||||
# Copyright (C) 2012-2013 Bastian Kleineidam
|
||||
"""
|
||||
Script to get a list of keenspot comics and save the info in a JSON file for further processing.
|
||||
Script to get a list of ComicGenesis comics and save the info in a
|
||||
JSON file for further processing.
|
||||
"""
|
||||
from __future__ import print_function
|
||||
import re
|
||||
|
@ -404,11 +405,13 @@ def get_results():
|
|||
|
||||
def has_comic(name):
|
||||
"""Check if comic name already exists."""
|
||||
cname = ("Creators/%s" % name).lower()
|
||||
gname = ("GoComics/%s" % name).lower()
|
||||
names = [
|
||||
("Creators/%s" % name).lower(),
|
||||
("GoComics/%s" % name).lower(),
|
||||
]
|
||||
for scraperclass in get_scraperclasses():
|
||||
lname = scraperclass.getName().lower()
|
||||
if lname == cname or lname == gname:
|
||||
if lname in names:
|
||||
return True
|
||||
return False
|
||||
|
|
@ -6,7 +6,7 @@ d=$(dirname $0)
|
|||
if [ $# -ge 1 ]; then
|
||||
list="$*"
|
||||
else
|
||||
list="creators gocomics drunkduck keenspot smackjeeves arcamax comicfury"
|
||||
list="creators gocomics drunkduck comicgenesis keenspot smackjeeves arcamax comicfury"
|
||||
fi
|
||||
for script in $list; do
|
||||
echo "Executing ${script}.py"
|
||||
|
|
|
@ -9,7 +9,7 @@ d=$(dirname $0)
|
|||
if [ $# -ge 1 ]; then
|
||||
list="$*"
|
||||
else
|
||||
list="creators gocomics drunkduck keenspot smackjeeves arcamax comicfury"
|
||||
list="creators gocomics drunkduck comicgenesis keenspot smackjeeves arcamax comicfury"
|
||||
fi
|
||||
for script in $list; do
|
||||
target="${d}/../dosagelib/plugins/${script}.py"
|
||||
|
|
Loading…
Reference in a new issue