From 5bfc1920b9660718a42c8bfbaccb396e4be7ee64 Mon Sep 17 00:00:00 2001
From: Chetouane <elias.chetouane@univ-grenoble-alpes.fr>
Date: Mon, 4 Dec 2023 16:30:44 +0100
Subject: [PATCH] Modifications pour suivre les changements dans
 run-all-codes.py

---
 0-collect-data/datacite.py | 4 +---
 0-collect-data/rdg.py      | 4 +---
 2 files changed, 2 insertions(+), 6 deletions(-)

diff --git a/0-collect-data/datacite.py b/0-collect-data/datacite.py
index 8e12466..5218822 100644
--- a/0-collect-data/datacite.py
+++ b/0-collect-data/datacite.py
@@ -13,8 +13,6 @@
 
 import requests, json
 
-folder = "0-collect-data/"
-
 # requête url de base
 url = 'https://api.datacite.org/dois?affiliation=true&query=creators.affiliation.affiliationIdentifier:"https://ror.org/02rx3b187"&page[size]=100'
 
@@ -54,6 +52,6 @@ print("Nombre de résultats trouvés : " + str(nb_dois))
 
 # exporter la liste de DOI au format txt
 
-with open(folder+"datacite-dois.txt", 'w') as f :
+with open("datacite-dois.txt", 'w') as f :
     [f.write(f"{line}\n") for line in dois]
 
diff --git a/0-collect-data/rdg.py b/0-collect-data/rdg.py
index cd895c0..1f1e9e7 100644
--- a/0-collect-data/rdg.py
+++ b/0-collect-data/rdg.py
@@ -17,8 +17,6 @@
 
 import requests, json
 
-folder = "0-collect-data/"
-
 # requetes de base sur chaque champ qui nous intéresse : affiliation du contact, auteurs, producteur et contributeurs
 # dans chaque champ, recherche "UGA" ou "Grenoble"
 urls = [
@@ -85,6 +83,6 @@ print("Nombre de dois différents trouvés : " + str(len(dois)))
 
 # exporter la liste de DOI au format txt
 
-with open(folder+"rdg-dois.txt", 'w') as f :
+with open("rdg-dois.txt", 'w') as f :
     [f.write(f"{line[4:]}\n") for line in dois] # [4:] pour retirer "doi:" au début de chaque ligne
 
-- 
GitLab