From 51d81aaa546c24ad6befee251873d068b4c33acf Mon Sep 17 00:00:00 2001 From: Elias Chetouane <elias.chetouane@univ-grenoble-alpes.fr> Date: Mon, 19 Feb 2024 12:25:45 +0100 Subject: [PATCH] Debug pour test. --- 0-collect-data/zenodo.py | 8 -------- 1-enrich-with-datacite/concatenate-enrich-dois.py | 3 ++- 2 files changed, 2 insertions(+), 9 deletions(-) diff --git a/0-collect-data/zenodo.py b/0-collect-data/zenodo.py index b2873e8..4af8a8a 100644 --- a/0-collect-data/zenodo.py +++ b/0-collect-data/zenodo.py @@ -29,13 +29,6 @@ import requests, json print("\n\nRunning zenodo.py") - - -with open("personnal-keys.json") as f : - ## load zenodo keys for requests the API - ACCESS_TOKEN = json.load(f)["ZENODO_KEY"] - - def req_zenodo_with_page(uga_perimeter, record_type, page_nb) : """ retourne les jeux de données UGA depuis Zenodo @@ -51,7 +44,6 @@ def req_zenodo_with_page(uga_perimeter, record_type, page_nb) : "size" : 100, "sort" : "mostrecent", "all_version" : False, - "access_tpoken" : ACCESS_TOKEN } ) # for debugging diff --git a/1-enrich-with-datacite/concatenate-enrich-dois.py b/1-enrich-with-datacite/concatenate-enrich-dois.py index c1ff64a..428a8cc 100644 --- a/1-enrich-with-datacite/concatenate-enrich-dois.py +++ b/1-enrich-with-datacite/concatenate-enrich-dois.py @@ -61,7 +61,7 @@ if temp_rows : # write the number of dois found in a file to display on the website with open("nb-dois.txt", 'w') as f : - f.write(str(len(df_out))) + f.write(str(len(df_out))) ## output another csv with datacite client and number of datasets df_client_raw = df_out["client"].value_counts().to_frame() @@ -81,6 +81,7 @@ if temp_rows : df_client_raw["name"] = client_names df_client_raw["year"] = client_years df_client_raw["url"] = client_urls + print("df_client_raw cree") df_client_raw.to_csv("all_datacite_clients_for_uga.csv") -- GitLab