diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2019-01-11 15:17:32 -0800 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2019-01-11 15:17:34 -0800 |
commit | 811f0a52779afdaa8e1f11a3781fc22fa3acc02c (patch) | |
tree | e6bed28dfde8e897d97b85fabfc731dc0a9e18fb /python/fatcat_tools/importers/orcid.py | |
parent | ee938e9edc9abfc33cdef6dc716eff89aceb5ca6 (diff) | |
download | fatcat-811f0a52779afdaa8e1f11a3781fc22fa3acc02c.tar.gz fatcat-811f0a52779afdaa8e1f11a3781fc22fa3acc02c.zip |
use full-on autoaccept mode
Now that editor_id is infered from token, don't *need* to create ahead
of time. This backend change simplifies things greatly (either update an
existing editgroup, or create new and *only* include entities in the
batch transaction), at the cost of being able to configure the editgroup
in any way, including setting a description.
Diffstat (limited to 'python/fatcat_tools/importers/orcid.py')
-rw-r--r-- | python/fatcat_tools/importers/orcid.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/python/fatcat_tools/importers/orcid.py b/python/fatcat_tools/importers/orcid.py index 0aa4ab00..0c8b1d62 100644 --- a/python/fatcat_tools/importers/orcid.py +++ b/python/fatcat_tools/importers/orcid.py @@ -74,10 +74,10 @@ class OrcidImporter(FatcatImporter): self.api.create_creator(ce, editgroup_id=editgroup_id) self.counts['insert'] += 1 - def create_batch(self, batch, editgroup_id=None): + def create_batch(self, batch): """Reads and processes in batches (not API-call-per-line)""" objects = [self.parse_orcid_dict(json.loads(l)) for l in batch if l != None] objects = [o for o in objects if o != None] - self.api.create_creator_batch(objects, autoaccept="true", editgroup_id=editgroup_id) + self.api.create_creator_batch(objects, autoaccept="true") self.counts['insert'] += len(objects) |