#4020 TRIZ Contradiction Matrix (CSV) to SQLite
#4020 TRIZ 40 Principles and TRIZ Contradiction Matrix (CSV) to SQLite
C:\Users\BobB\Documents\Excel_Stuff\TRIZ_40_Priniciples.csv
FROM: qualitygurus.com/guide-to-the-40-triz-principles-table-format/
C:\Users\BobB\Documents\Excel_Stuff\TRIZ_Contradiction_Matrix.csv
import pandas as pd
import sqlite3
# Define file and table names
csv_file = 'your_data.csv'
db_file = 'your_database.db'
table_name = 'your_table_name'
# Load the CSV file into a pandas DataFrame
df = pd.read_csv(csv_file)
# Connect to the SQLite database (it will be created if it doesn't exist)
conn = sqlite3.connect(db_file)
# Write the data into a SQL table
# if_exists='replace' will drop the table and create a new one each time
df.to_sql(table_name, conn, if_exists='replace', index=False)
# Close the database connection
conn.close()
Comments
Post a Comment