A partner has noticed two minors bugs to be fixed:
- String double quotes should become single quotes in "records"
- Replace this line in custom_api.py in the section # Download the result files for each analysis:
-#get_analysis_result_files(project_uuid, analysis_uuid, main_headers, output_file)
+try:
+ get_analysis_result_files(project_uuid, analysis_uuid, main_headers, output_file)
+except requests.exceptions.HTTPError as e:
+ if "duplicate entry" in str(e):
+ print(f"Skipped analysis {analysis_uuid}: duplicate file detected.")
+ skipped_analyses.append(analysis_uuid)
+ else:
+ raise
@Paulagomis