dosage/scripts/keenspot.py

69 lines
2 KiB
Python
Raw Normal View History

2013-03-11 21:03:17 +00:00
#!/usr/bin/env python
2016-04-12 22:52:16 +00:00
# -*- coding: utf-8 -*-
2016-10-28 22:21:41 +00:00
# Copyright (C) 2004-2008 Tristan Seligmann and Jonathan Jacobs
2014-01-05 15:50:57 +00:00
# Copyright (C) 2012-2014 Bastian Kleineidam
2017-04-15 23:06:41 +00:00
# Copyright (C) 2015-2017 Tobias Gruetzmacher
2013-03-11 21:03:17 +00:00
"""
Script to get a list of KeenSpot comics and save the info in a
JSON file for further processing.
"""
2016-04-12 22:52:16 +00:00
from __future__ import absolute_import, division, print_function
2016-10-13 22:14:53 +00:00
from six.moves.urllib.parse import urlsplit
from scriptutil import ComicListUpdater
from dosagelib.util import check_robotstxt
class KeenSpotUpdater(ComicListUpdater):
dup_templates = ('Creators/%s', "GoComics/%s", "ComicGenesis/%s")
# names of comics to exclude
excluded_comics = (
# non-standard navigation
"BrawlInTheFamily",
"Flipside",
"LastBlood",
"TheGodChild",
"Twokinds",
2017-04-15 23:06:41 +00:00
"Yirmumah",
2016-10-13 22:14:53 +00:00
)
extra = {
'CrowScare': 'last="20111031"',
'Dreamless': 'last="20100726"',
'MysticRevolution': 'path="?cid=%s"',
'PunchAnPie': 'path="daily/%s.html"',
'ShockwaveDarkside': 'path="2d/%s.html"',
}
def collect_results(self):
"""Parse the front page."""
data = self.get_url('http://keenspot.com/')
for comiclink in data.xpath('//td[@id]/a'):
comicurl = comiclink.attrib['href']
name = comiclink.xpath("string()")
try:
if "/d/" not in comicurl:
check_robotstxt(comicurl + "d/", self.session)
else:
check_robotstxt(comicurl, self.session)
except IOError as e:
print("[%s] INFO: robots.txt denied: %s" % (name, e))
continue
2013-03-11 21:03:17 +00:00
2016-10-13 22:14:53 +00:00
self.add_comic(name, comicurl)
2013-03-11 21:03:17 +00:00
2016-10-13 22:14:53 +00:00
def get_entry(self, name, url):
sub = urlsplit(url).hostname.split('.', 1)[0]
if name in self.extra:
extra = ', ' + self.extra[name]
else:
extra = ''
return u"cls('%s', '%s'%s)," % (name, sub, extra)
2013-03-11 21:03:17 +00:00
if __name__ == '__main__':
2016-10-13 22:14:53 +00:00
KeenSpotUpdater(__file__).run()