2020-04-18 11:45:44 +00:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
# SPDX-License-Identifier: MIT
|
2016-10-28 22:21:41 +00:00
|
|
|
# Copyright (C) 2004-2008 Tristan Seligmann and Jonathan Jacobs
|
2016-04-12 22:52:16 +00:00
|
|
|
# Copyright (C) 2012-2014 Bastian Kleineidam
|
2022-06-05 18:23:56 +00:00
|
|
|
# Copyright (C) 2015-2022 Tobias Gruetzmacher
|
2012-11-28 17:15:12 +00:00
|
|
|
"""
|
2016-04-12 22:52:16 +00:00
|
|
|
Script to get a list of gocomics and save the info in a JSON file for further
|
|
|
|
processing.
|
2012-11-28 17:15:12 +00:00
|
|
|
"""
|
2016-04-11 22:36:33 +00:00
|
|
|
|
2016-04-14 20:22:37 +00:00
|
|
|
from scriptutil import ComicListUpdater
|
|
|
|
|
|
|
|
|
|
|
|
class GoComicsUpdater(ComicListUpdater):
|
2022-06-05 22:20:12 +00:00
|
|
|
dup_templates = (
|
|
|
|
"ComicsKingdom/%s",
|
|
|
|
)
|
|
|
|
|
2016-04-14 20:22:37 +00:00
|
|
|
# names of comics to exclude
|
2016-11-01 01:51:00 +00:00
|
|
|
excluded_comics = (
|
2017-01-11 01:21:05 +00:00
|
|
|
# too short
|
|
|
|
'LukeyMcGarrysTLDR',
|
2016-11-01 01:51:00 +00:00
|
|
|
)
|
2016-04-14 20:22:37 +00:00
|
|
|
|
2020-04-19 23:03:30 +00:00
|
|
|
def handle_gocomics(self, url, outercss='a.gc-blended-link', lang=None):
|
2017-01-11 01:21:05 +00:00
|
|
|
"""Parse one GoComics alphabetic page."""
|
2016-04-14 22:26:14 +00:00
|
|
|
data = self.get_url(url, expand=False)
|
2016-04-14 20:22:37 +00:00
|
|
|
|
2017-01-11 01:21:05 +00:00
|
|
|
for comiclink in data.cssselect(outercss):
|
2020-09-27 23:15:07 +00:00
|
|
|
link = comiclink.attrib['href'].split('/')[1].strip()
|
2017-01-11 01:21:05 +00:00
|
|
|
name = comiclink.cssselect('h4')[0].text
|
|
|
|
self.add_comic(name, (link, lang))
|
2016-04-14 20:22:37 +00:00
|
|
|
|
|
|
|
def collect_results(self):
|
|
|
|
"""Parse all listing pages."""
|
2022-06-05 18:23:56 +00:00
|
|
|
# We add the spanish comics first since they are now also listed on the list of all
|
|
|
|
# comics... (Expect duplicate warnings for all spanish comics)
|
|
|
|
self.handle_gocomics('https://www.gocomics.com/comics/espanol', lang='es')
|
|
|
|
self.handle_gocomics('https://www.gocomics.com/comics/espanol?page=2', lang='es')
|
|
|
|
self.handle_gocomics('https://www.gocomics.com/comics/a-to-z')
|
2016-04-14 20:22:37 +00:00
|
|
|
|
2022-06-05 18:23:56 +00:00
|
|
|
def get_entry(self, name: str, data: tuple[str, str]):
|
2017-01-11 01:21:05 +00:00
|
|
|
url, lang = data
|
|
|
|
langopt = ", '%s'" % lang if lang else ''
|
2020-04-19 23:03:30 +00:00
|
|
|
return u"cls('%s', '%s'%s)," % (name, url, langopt)
|
2012-11-28 17:15:12 +00:00
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
2016-04-14 20:22:37 +00:00
|
|
|
GoComicsUpdater(__file__).run()
|