Refresh GoComics list from online directory.
This commit is contained in:
parent
0e385a3697
commit
443ab119e9
2 changed files with 886 additions and 451 deletions
File diff suppressed because it is too large
Load diff
|
@ -1,36 +1,37 @@
|
||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
# Copyright (C) 2012-2014 Bastian Kleineidam
|
# -*- coding: utf-8 -*-
|
||||||
|
# Copyright (C) 2013-2014 Bastian Kleineidam
|
||||||
|
# Copyright (C) 2016 Tobias Gruetzmacher
|
||||||
"""
|
"""
|
||||||
Script to get a list of gocomics and save the info in a JSON file for further processing.
|
Script to get a list of gocomics and save the info in a JSON file for further processing.
|
||||||
"""
|
"""
|
||||||
from __future__ import print_function
|
from __future__ import absolute_import, division, print_function
|
||||||
|
|
||||||
import codecs
|
import codecs
|
||||||
import re
|
|
||||||
import sys
|
import sys
|
||||||
import os
|
import os
|
||||||
import requests
|
import requests
|
||||||
sys.path.append(os.path.join(os.path.dirname(__file__), ".."))
|
from lxml import html
|
||||||
from dosagelib.util import tagre, getPageContent, asciify, unescape
|
|
||||||
from scriptutil import contains_case_insensitive, capfirst, save_result, load_result, truncate_name
|
sys.path.append(os.path.join(os.path.dirname(__file__), "..")) # noqa
|
||||||
|
from dosagelib.util import get_page
|
||||||
|
from scriptutil import contains_case_insensitive, format_name, save_result, load_result, truncate_name
|
||||||
|
|
||||||
json_file = __file__.replace(".py", ".json")
|
json_file = __file__.replace(".py", ".json")
|
||||||
|
|
||||||
#<a href="/shortname" class="alpha_list updated">name</a>
|
|
||||||
url_matcher = re.compile(tagre("a", "href", r'(/[^"]+)', after="alpha_list") + r"([^<]+)</a>")
|
|
||||||
|
|
||||||
# names of comics to exclude
|
# names of comics to exclude
|
||||||
exclude_comics = [
|
exclude_comics = [
|
||||||
"Angryprogrammer", # unavailable
|
# "coming soon"
|
||||||
"Complex", # "coming soon"
|
"Angryprogrammer",
|
||||||
"Guinness", # "coming soon"
|
"Guinness",
|
||||||
"Jabberwoncky", # "coming soon"
|
"Jabberwoncky",
|
||||||
"KickyBrand", # unavailable
|
"RandysRationale"
|
||||||
"Penmanship", # unavailable
|
"SignsOfOurTimes",
|
||||||
"RandysRationale", # "coming soon"
|
"TheGagwriter",
|
||||||
"SaturdayMorningBreakfastCereal", # duplicate
|
"Yaoyao",
|
||||||
"SignsOfOurTimes", # "coming soon"
|
|
||||||
"TheGagwriter", # "coming soon"
|
# duplicate
|
||||||
"Yaoyao", # "coming soon"
|
"SaturdayMorningBreakfastCereal",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
||||||
|
@ -38,27 +39,24 @@ def handle_url(url, session, res):
|
||||||
"""Parse one search result page."""
|
"""Parse one search result page."""
|
||||||
print("Parsing", url, file=sys.stderr)
|
print("Parsing", url, file=sys.stderr)
|
||||||
try:
|
try:
|
||||||
data = getPageContent(url, session)
|
data = html.document_fromstring(get_page(url, session).text)
|
||||||
except IOError as msg:
|
except IOError as msg:
|
||||||
print("ERROR:", msg, file=sys.stderr)
|
print("ERROR:", msg, file=sys.stderr)
|
||||||
return
|
return
|
||||||
for match in url_matcher.finditer(data):
|
|
||||||
shortname = match.group(1)
|
for comiclink in data.cssselect('a.alpha_list'):
|
||||||
name = unescape(match.group(2))
|
link = comiclink.attrib['href']
|
||||||
name = asciify(name.replace('&', 'And').replace('@', 'At'))
|
name = format_name(comiclink.text)
|
||||||
name = capfirst(name)
|
|
||||||
if name in exclude_comics:
|
|
||||||
continue
|
|
||||||
if contains_case_insensitive(res, name):
|
if contains_case_insensitive(res, name):
|
||||||
# we cannot handle two comics that only differ in case
|
# we cannot handle two comics that only differ in case
|
||||||
print("INFO: skipping possible duplicate", repr(name), file=sys.stderr)
|
print("INFO: skipping possible duplicate", repr(name), file=sys.stderr)
|
||||||
continue
|
continue
|
||||||
res[name] = shortname
|
res[name] = link
|
||||||
|
|
||||||
|
|
||||||
def get_results():
|
def get_results():
|
||||||
"""Parse all search result pages."""
|
"""Parse all search result pages."""
|
||||||
# store info in a dictionary {name -> shortname}
|
# store info in a dictionary {name -> uri}
|
||||||
res = {}
|
res = {}
|
||||||
session = requests.Session()
|
session = requests.Session()
|
||||||
handle_url('http://www.gocomics.com/features', session, res)
|
handle_url('http://www.gocomics.com/features', session, res)
|
||||||
|
@ -68,17 +66,22 @@ def get_results():
|
||||||
save_result(res, json_file)
|
save_result(res, json_file)
|
||||||
|
|
||||||
|
|
||||||
|
def first_lower(x):
|
||||||
|
return x[0].lower()
|
||||||
|
|
||||||
|
|
||||||
def print_results(args):
|
def print_results(args):
|
||||||
"""Print all comics that have at least the given number of minimum comic strips."""
|
"""Print all comics that have at least the given number of minimum comic strips."""
|
||||||
min_comics, filename = args
|
min_comics, filename = args
|
||||||
with codecs.open(filename, 'a', 'utf-8') as fp:
|
with codecs.open(filename, 'a', 'utf-8') as fp:
|
||||||
for name, shortname in sorted(load_result(json_file).items()):
|
data = load_result(json_file)
|
||||||
|
for name, uri in sorted(data.items(), key=first_lower):
|
||||||
if name in exclude_comics:
|
if name in exclude_comics:
|
||||||
print("Excluded " + name)
|
print("Excluded " + name)
|
||||||
continue
|
continue
|
||||||
fp.write(u"add(%r, %r)\n" % (
|
fp.write(u"\n\nclass GC%s(_GoComics%s):\n path = %r\n" % (
|
||||||
str(truncate_name(name)), str(shortname))
|
truncate_name(name), 'Es' if 'espanol/' in uri else '',
|
||||||
)
|
uri[1:]))
|
||||||
|
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
|
|
Loading…
Reference in a new issue