I want to upload CSV files containing node and relationship information to my AuraDB instance.
However, from my research, the LOAD CSV method is not available in AuraDB, and apoc.import.csv is also not an option since I cannot edit the apoc.conf file.
The recommended approach seems to be using dump files for importing data into AuraDB.
While the Neo4j Data Importer is an option, I have excluded it since it requires a manual process.
My goal is to automatically import data into AuraDB from Python scripts. What would be the best practice for accomplishing this? I would appreciate any guidance on the recommended way to programmatically load data from CSV files into an AuraDB database instance using Python.
Thank you!