-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathinsert_data.py
51 lines (43 loc) · 1.57 KB
/
insert_data.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
import csv
from schema import Address, Employee, Team
from terminusdb_client import Client
# we keep all the information in dictionaries with Employee id as keys
employees = {}
contact_numbers = {}
addresses = {}
managers = {}
with open("Contact.csv") as file:
csv_file = csv.reader(file)
next(csv_file) # skiping header
for row in csv_file:
contact_numbers[row[0]] = row[1]
street = row[2].split(",")[0]
street_num = int(street.split(" ")[0])
street_name = " ".join(street.split(" ")[1:])
town = row[2].split(",")[1]
addresses[row[0]] = Address(
street_num=street_num, street=street_name, town=town, postcode=row[3]
)
with open("Employees.csv") as file:
csv_file = csv.reader(file)
next(csv_file) # skiping header
for row in csv_file:
team = eval(f"Team.{row[3].lower()}")
employees[row[0]] = Employee(
_id="Employee/" + row[0],
name=row[1],
title=row[2],
address=addresses[row[0]],
contact_number=contact_numbers[row[0]],
team = team
)
managers[row[0]] = row[4]
for emp_id, man_id in managers.items():
if man_id:
employees[emp_id].manager = employees[man_id]
# For Terminus X, use the following
# client = Client("https://cloud.terminusdb.com/<Your Team>/")
# client.connect(db="demo_workshop", team="<Your Team>", use_token=True)
client = Client("http://127.0.0.1:6363/")
client.connect(db="getting_started")
client.insert_document(list(employees.values()), commit_msg="Adding 4 Employees")