diff options
-rwxr-xr-x | check_issn_urls.py | 7 |
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", ] |