-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathload.py
63 lines (53 loc) · 1.73 KB
/
load.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
52
53
54
55
56
57
58
59
60
61
62
63
import csv
import sqlite3
# File paths
cars_country_path = 'data/Cars_Country.csv'
cars_multi_path = 'data/Cars_Multi.csv'
cars_price_path = 'data/Cars_Price.csv'
# Create a SQLite database connection
conn = sqlite3.connect('cars_database.db')
cursor = conn.cursor()
# Create the tables
cursor.execute('''
CREATE TABLE IF NOT EXISTS Cars_Country (
origin TEXT PRIMARY KEY,
country_name TEXT
)
''')
cursor.execute('''
CREATE TABLE IF NOT EXISTS Cars_Multi (
id INTEGER PRIMARY KEY,
name TEXT,
mpg REAL,
cylinders INTEGER,
displacement REAL,
horsepower REAL,
weight REAL,
acceleration REAL,
model_year INTEGER,
origin TEXT,
FOREIGN KEY (origin) REFERENCES Cars_Country(origin)
)
''')
cursor.execute('''
CREATE TABLE IF NOT EXISTS Cars_Price (
id INTEGER PRIMARY KEY,
price REAL
)
''')
# Function to insert data into a table from a CSV file
def insert_data_from_csv(file_path, table_name, columns):
with open(file_path, 'r') as file:
reader = csv.reader(file)
next(reader) # Skip header row
rows = [tuple(row) for row in reader]
placeholders = ', '.join(['?'] * len(columns))
cursor.executemany(f'INSERT INTO {table_name} ({", ".join(columns)}) VALUES ({placeholders})', rows)
# Insert data into the tables
insert_data_from_csv(cars_country_path, 'Cars_Country', ['origin', 'country_name'])
insert_data_from_csv(cars_multi_path, 'Cars_Multi', ['id', 'mpg', 'cylinders', 'displacement', 'horsepower', 'weight', 'acceleration', 'model_year', 'origin', 'name'])
insert_data_from_csv(cars_price_path, 'Cars_Price', ['id', 'price'])
# Commit changes and close the connection
conn.commit()
conn.close()
print("Data successfully loaded into the SQLite database.")