-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathopen_sqlite_handling.py
More file actions
156 lines (127 loc) · 4.66 KB
/
open_sqlite_handling.py
File metadata and controls
156 lines (127 loc) · 4.66 KB
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
import sqlite3
import pandas as pd
from a_constants import *
def sqlite_creation_fill(db_file):
conn = sqlite3.connect(db_file)
cursor = conn.cursor()
create_table = """ CREATE TABLE IF NOT EXISTS objects(
source TEXT NOT NULL,
objectid TEXT NOT NULL, \
title TEXT NOT NULL, \
attribution TEXT, \
beginyear INTEGER, \
endyear INTEGER, \
displaydate INTEGER, \
classification TEXT NOT NULL, \
medium TEXT, \
width INTEGER NOT NULL, \
height INTEGER NOT NULL, \
imgurl_thumb TEXT NOT NULL, \
imgurl_downsized TEXT NOT NULL, \
imgurl_full TEXT NOT NULL PRIMARY KEY); """
cursor.execute(create_table)
conn.commit()
df = pd.read_csv(
Constants.NGA_CSV_CONTAINER / "objects.csv",
on_bad_lines="skip",
index_col=False,
dtype="unicode",
)
df.to_sql("objects", conn, if_exists="append", index=False, chunksize=1000)
conn.close()
def query_builder():
pass
def iter_containing_none(iter):
for it in iter:
if it is None:
return True
return False
def sql_injection(
query: str, fetch_all=True, db_file=Constants.SQLite_OPEN_ART_DB_FILE_NAME
) -> list:
if not os.path.exists(db_file):
print("SQLite db does not exists. Create one first.")
else:
conn = sqlite3.connect(db_file)
cursor = conn.cursor()
if query.startswith("SELECT"):
cursor.execute(query)
if fetch_all:
rows = cursor.fetchall()
return rows
else:
rows = cursor.fetchall()
return [row[0] for row in rows]
else:
print("Only SELECT is allowed")
return []
def sql_column_freq(col):
return f"SELECT {col}, COUNT({col}) \
AS count FROM objects GROUP BY {col} ORDER BY count DESC;"
def sql_column_all(col):
return f"SELECT {col} FROM objects ORDER BY {col} ASC;"
def column_all(column_name):
name_list = sql_injection(sql_column_all(column_name), False)
res = filter(None, sorted(list(set(map(str, name_list)))))
[print(r) for r in res]
return name_list
def column_by_frequency(column_name):
name_list = sql_injection(sql_column_freq(column_name), True)
print(f"{column_name.capitalize()} in database, sorted by occurrence.")
print(*(f"{name[0]} ({name[1]} occurrences)," for name in name_list), "\n" * 2)
return name_list
def sql_injection_menu():
while True:
print("1. Type a sql injection")
print("")
print("2. Print frequency of all artists")
print("3. Print frequency of all display dates")
print("4. Print frequency of all begin years")
print("5. Print frequency of all end years")
print("6. Print frequency of all mediums")
print("7. Print frequency of all classifications")
print("")
print("8. Print all artists")
print("9. Print all display dates")
print("10. Print all begin years")
print("11. Print all end years")
print("12. Print all mediums")
print("13. Print all classifications")
print("")
print("14. Back to main menu.")
num = input("Choose a number\n")
match num:
case "1":
res = sql_injection(input("Type your SQL query\n"), True)
case "2":
artist = column_by_frequency("attribution")
case "3":
display_dates = column_by_frequency("displaydate")
case "4":
begin_year = column_by_frequency("beginyear")
case "5":
end_year = column_by_frequency("endyear")
case "6":
medium = column_by_frequency("medium")
case "7":
classification = column_by_frequency("classification")
case "8":
artist = column_all("attribution")
case "9":
display_dates = column_all("displaydate")
case "10":
begin_year = column_all("beginyear")
case "11":
end_year = column_all("endyear")
case "12":
medium = column_all("medium")
case "13":
classification = column_all("classification")
case "14":
break
def remove_old_and_create_new_sqlite_db():
if os.path.exists(Constants.SQLite_OPEN_ART_DB_FILE_NAME):
os.remove(Constants.SQLite_OPEN_ART_DB_FILE_NAME)
sqlite_creation_fill(Constants.SQLite_OPEN_ART_DB_FILE_NAME)
if __name__ == "__main__":
print("Not standalone")