aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBryan Newbold <bnewbold@archive.org>2022-07-29 17:42:35 -0700
committerBryan Newbold <bnewbold@archive.org>2022-07-29 17:42:35 -0700
commitfed9e4064ca37556c5ff2919e4507b532b793df3 (patch)
tree266befb471886be19b9b286a617774be25db863e
parentb92d1b60625592baf66b08451274e4c865028d7d (diff)
downloadchocula-fed9e4064ca37556c5ff2919e4507b532b793df3.tar.gz
chocula-fed9e4064ca37556c5ff2919e4507b532b793df3.zip
check_issn_urls: more platforms
-rwxr-xr-xcheck_issn_urls.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/check_issn_urls.py b/check_issn_urls.py
index cea7c81..45a3676 100755
--- a/check_issn_urls.py
+++ b/check_issn_urls.py
@@ -55,6 +55,11 @@ def sniff_platform(resp):
"hypotheses.org/": "hypothesis",
"tandf.co.uk/": "t_and_f",
"scielo": "scielo",
+ "jstage.jst.go.jp": "jstage",
+ "ieeexplore.ieee.org": "ieee",
+ "dx.doi.org/": "doi",
+ "catalog.hathitrust.org": "hathitrust",
+ "muse.jhu.edu": "muse",
}
for domain, platform in domain_map.items():
if domain in resp.url:
@@ -132,6 +137,8 @@ HOST_SKIP_LIST = [
"www.journals.elsevier.com",
"web.archive.org",
"catalog.hathitrust.org",
+ #"ieeexplore.ieee.org",
+ #"journals.sagepub.com",
]