From d436e53535c5e7fc0b259543cea53823ca80a6a0 Mon Sep 17 00:00:00 2001 From: Elias Chetouane <elias.chetouane@univ-grenoble-alpes.fr> Date: Fri, 16 Feb 2024 18:15:13 +0100 Subject: [PATCH] Version fonctionnelle pour l'ajout d'infos sur les clients datacite. --- 1-enrich-with-datacite/concatenate-enrich-dois.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-enrich-with-datacite/concatenate-enrich-dois.py b/1-enrich-with-datacite/concatenate-enrich-dois.py index 15786a2..a96a44f 100644 --- a/1-enrich-with-datacite/concatenate-enrich-dois.py +++ b/1-enrich-with-datacite/concatenate-enrich-dois.py @@ -68,7 +68,7 @@ if temp_rows : client_urls = [] for i in range(0, len(df_client_raw)): client = df_client_raw.iloc[i].name - req = requests.get('https://api.datacite.org/clients?query=id:%22'+str(client)'%22') + req = requests.get('https://api.datacite.org/clients?query=id:%22'+str(client)+'%22') client_names.append(req.json()["data"][0]["attributes"]["name"]) client_years.append(req.json()["data"][0]["attributes"]["year"]) client_urls.append(req.json()["data"][0]["attributes"]["url"]) -- GitLab