aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xchocula.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/chocula.py b/chocula.py
index 72268cc..36a880d 100755
--- a/chocula.py
+++ b/chocula.py
@@ -1326,6 +1326,10 @@ class ChoculaDatabase():
webarchive_urls = []
cur = self.db.execute("SELECT * FROM homepage WHERE issnl = ?;", [row['issnl']])
for hrow in cur:
+ if '://doaj.org/' in hrow['url'] or '://www.doaj.org/' in hrow['url']:
+ continue
+ if '://www.ncbi.nlm.nih.gov/' in hrow['url']:
+ continue
if 'web.archive.org/web' in hrow['url']:
webarchive_urls.append(hrow['url'])
urls.append(hrow['url'])