diff options
Diffstat (limited to 'python/fatcat_tools')
| -rw-r--r-- | python/fatcat_tools/importers/crossref.py | 8 | 
1 files changed, 8 insertions, 0 deletions
| diff --git a/python/fatcat_tools/importers/crossref.py b/python/fatcat_tools/importers/crossref.py index d8abf3eb..bd070ef1 100644 --- a/python/fatcat_tools/importers/crossref.py +++ b/python/fatcat_tools/importers/crossref.py @@ -163,6 +163,14 @@ class CrossrefImporter(EntityImporter):              self.counts['skip-blank-title'] += 1              return False +        # these are pre-registered DOIs before the actual record is ready +        # title is a list of titles +        if obj.get('title')[0].strip().lower() in [ +                "OUP accepted manuscript".lower(), +            ]: +            self.counts['skip-stub-title'] += 1 +            return False +          # do most of these checks in-line below          return True | 
