I have 200 CSV files and I want to import them to neo4j; the data are stored in all kinds of tables in CSV, meaning, different structures of tables storing same type of data. They are like:
Table 1
A B C
1 2 3
Table 2
A 1
B 2
C 3
Table 3
A B C
D d1 d2 d1 d2 d1 d2
I know I can write script using for loop and if statement to match the key words, But I'm wondering if there is any better way or tools?
I've seen people suggesting using Hadoop MapReduce technique to handle unstructured data; not sure if it is suitable for semi-structured data?
Has anyone known how to process this kinda of data and import to neo4j by python or py2neo?