diff options
author | Martin Czygan <martin.czygan@gmail.com> | 2020-03-09 20:12:37 +0100 |
---|---|---|
committer | Martin Czygan <martin.czygan@gmail.com> | 2020-03-09 20:12:37 +0100 |
commit | 6f5ead85169c71a7a010a9e2d54d4c41489c607b (patch) | |
tree | 117ce8a1b4fef97f13ba1b29c1a574f46140bc5c | |
parent | 4a1aa8b28dde887524b294d33566583baf24db74 (diff) | |
download | fatcat-6f5ead85169c71a7a010a9e2d54d4c41489c607b.tar.gz fatcat-6f5ead85169c71a7a010a9e2d54d4c41489c607b.zip |
pubmed: citations is a bit more precise
> Each day, NLM produces update files that include new, revised and
deleted citations. -- ftp://ftp.ncbi.nlm.nih.gov/pubmed/updatefiles/README.txt
-rw-r--r-- | python/fatcat_tools/harvest/pubmed.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/fatcat_tools/harvest/pubmed.py b/python/fatcat_tools/harvest/pubmed.py index 527e6dd3..43a671cd 100644 --- a/python/fatcat_tools/harvest/pubmed.py +++ b/python/fatcat_tools/harvest/pubmed.py @@ -143,7 +143,7 @@ class PubmedFTPWorker: while True: current = self.state.next(continuous) if current: - print("Fetching DOIs updated on {} (UTC)".format(current), file=sys.stderr) + print("Fetching citations updated on {} (UTC)".format(current), file=sys.stderr) self.fetch_date(current) self.state.complete(current, kafka_topic=self.state_topic, kafka_config=self.kafka_config) continue |