diff options
author | Martin Czygan <martin.czygan@gmail.com> | 2021-06-08 23:01:28 +0200 |
---|---|---|
committer | Martin Czygan <martin.czygan@gmail.com> | 2021-06-08 23:01:28 +0200 |
commit | b5ede61d163dc55408919c092f9ed5f3d38f79f1 (patch) | |
tree | 57e699827da24a02b746643db37a695251df832a /python | |
parent | b5c418617c3c116fbb2b703ab6449e979f8ff560 (diff) | |
download | refcat-b5ede61d163dc55408919c092f9ed5f3d38f79f1.tar.gz refcat-b5ede61d163dc55408919c092f9ed5f3d38f79f1.zip |
update Bref task
Diffstat (limited to 'python')
-rw-r--r-- | python/refcat/tasks.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/python/refcat/tasks.py b/python/refcat/tasks.py index 4505973..15a27d5 100644 --- a/python/refcat/tasks.py +++ b/python/refcat/tasks.py @@ -1172,6 +1172,8 @@ class OpenLibraryReleaseMapped(Refcat): class Bref(Refcat): """ Combine bref files from various sources. + + TODO: add "web" outlinks sample """ def requires(self): return { @@ -1180,6 +1182,7 @@ class Bref(Refcat): "pmcid": BrefZipPMCID(), "arxiv": BrefZipArxiv(), "fuzzy": BrefZipFuzzy(), + "ol-isbn": BrefOpenLibraryZipISBN(), "ol-fuzzy": BrefZipOpenLibrary(), } |