diff --git a/run-all-codes.py b/run-all-codes.py index 39f0307d54b2d4de37d829843ca281d17f48d234..43211c1ecebd5fbc3f9ad24e2ec6ad69ad85437b 100644 --- a/run-all-codes.py +++ b/run-all-codes.py @@ -21,6 +21,12 @@ def execute_python_file(file_path): # file_path = "0-collect-data/nakala.py" -file_path = "0-collect-data/zenodo.py" - -execute_python_file (file_path) \ No newline at end of file +file_paths = [ + "0-collect-data/zenodo.py", + "0-collect-data/nakala.py", + "0-collect-data/datacite.py", + "0-collect-data/rdg.py" +] + +for file_path in file_paths: + execute_python_file (file_path)