diff options
-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(), } |