diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2019-01-08 14:59:38 -0800 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2019-01-08 14:59:38 -0800 |
commit | 8c930ded07b6a668bc1721ef98312d9259c06b59 (patch) | |
tree | ce31708556d17d7165a64f15d0dac78d881e80bc /python/fatcat_tools/importers/matched.py | |
parent | d1862ea4a6dcb781713ffc54bdc4bd7d7cdbdb9e (diff) | |
download | fatcat-8c930ded07b6a668bc1721ef98312d9259c06b59.tar.gz fatcat-8c930ded07b6a668bc1721ef98312d9259c06b59.zip |
importers and tests all use new api-passing
Diffstat (limited to 'python/fatcat_tools/importers/matched.py')
-rw-r--r-- | python/fatcat_tools/importers/matched.py | 18 |
1 files changed, 12 insertions, 6 deletions
diff --git a/python/fatcat_tools/importers/matched.py b/python/fatcat_tools/importers/matched.py index 5dbda27c..0b77bcf0 100644 --- a/python/fatcat_tools/importers/matched.py +++ b/python/fatcat_tools/importers/matched.py @@ -37,12 +37,18 @@ class MatchedImporter(FatcatImporter): - core_id, wikidata_id, pmcid, pmid: not as lists """ - def __init__(self, host_url, skip_file_updates=False, default_mime=None, - default_link_rel="web"): - super().__init__(host_url) - self.default_mime = default_mime - self.default_link_rel = default_link_rel - self.skip_file_updates = skip_file_updates + def __init__(self, api, **kwargs): + + eg_desc = kwargs.get('editgroup_description', + "Import of large-scale file-to-release match results. Source of metadata varies.") + eg_extra = kwargs.get('editgroup_extra', dict()) + eg_extra['agent'] = eg_extra.get('agent', 'fatcat_tools.MatchedImporter') + super().__init__(api, + editgroup_description=eg_desc, + editgroup_extra=eg_extra) + self.default_link_rel = kwargs.get("default_link_rel", "web") + self.default_mime = kwargs.get("default_mime", None) + self.skip_file_updates = kwargs.get("skip_file_updates", False) def make_url(self, raw): rel = self.default_link_rel |