-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGenerate_db.py
More file actions
227 lines (194 loc) · 4.22 KB
/
Generate_db.py
File metadata and controls
227 lines (194 loc) · 4.22 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
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
import random
import sqlite3
import csv
att_list = ['id','above-the-hip (length)',
'hip (length)',
'micro (length)',
'mini (length)',
'above-the-knee (length)',
'knee (length)',
'below the knee (length)',
'midi',
'maxi (length)',
'floor (length)',
'single breasted',
'double breasted',
'lace up',
'wrapping',
'zip-up',
'fly (opening)',
'buckled (opening)',
'toggled (opening)',
'no opening',
'asymmetrical',
'symmetrical',
'peplum',
'circle',
'flare',
'fit and flare',
'trumpet',
'mermaid',
'balloon',
'bell',
'bell bottom',
'bootcut',
'peg',
'pencil',
'straight',
'a-line',
'tent',
'baggy',
'wide leg',
'high low',
'curved (fit)',
'tight (fit)',
'regular (fit)',
'loose (fit)',
'oversized',
'burnout',
'distressed',
'washed',
'embossed',
'frayed',
'printed',
'ruched',
'quilted',
'pleat',
'gathering',
'smocking',
'tiered',
'cutout',
'slit',
'perforated',
'lining',
'no special manufacturing technique',
'plain (pattern)',
'abstract',
'cartoon',
'letters, numbers',
'camouflage',
'check',
'dot',
'fair isle',
'floral',
'geometric',
'paisley',
'stripe',
'houndstooth (pattern)',
'herringbone (pattern)',
'chevron',
'argyle',
'leopard',
'snakeskin (pattern)',
'cheetah',
'peacock',
'zebra',
'giraffe',
'toile de jouy',
'plant',
'empire waistline',
'dropped waistline',
'high waist',
'normal waist',
'low waist',
'basque (wasitline)',
'no waistline']
#Setting up data
ids = []
with open('db_csv/img_id.csv', newline='') as csvfile:
data = csv.reader(csvfile, delimiter=',')
for row in data:
ids.append(row[0])
atts = []
with open('db_csv/attributes.csv', newline='') as csvfile:
data = csv.reader(csvfile, delimiter=',')
for row in data:
atts.append(row)
# print(', '.join(row))
# print(atts)
no_of_ids = len(ids)
for i in range(no_of_ids):
id = ids[i][0:8] + " " + ".jpg"
print(id)
atts[i].insert(0, ids[i])
print(atts)
#Database connection
conn = sqlite3.connect('/Users/prashantvaidya/Desktop/Myntra_web/myntra.db')
print("Database opened successfully")
def Create_table(table):
conn.execute(f"CREATE TABLE IF NOT EXISTS {table}(id TEXT)")
print("Table Created")
def add_column(table, column):
try:
conn.execute(f"ALTER TABLE {table} ADD {column} VARCHAR(100)")
print("Column Added")
except:
print("Column Exists")
def insert(table, value):
# try:
conn.execute(f"INSERT INTO {table}(id) VALUES('{value}')")
print("Value inserted")
# except:
# print("Value not inserted")
def update_column(table, column, value):
try:
conn.execute(f"UPDATE {table} SET {column} = {value}")
print("Column updated")
except:
print("Column not updated")
#Attribute Table
def clean_up(att):
att = att.replace(" ","_")
att = att.replace(")","")
att = att.replace("(","")
att = att.replace("-","_")
return att
Create_table('attributes')
for att in att_list:
add_column('attributes', clean_up(att))
for apparel in atts:
#check for id insert
flag = False
for att in apparel:
if not flag:
insert('attributes', att)
flag = True
else:
update_column('attributes', clean_up(att), 1)
conn.commit()
print("Attribute database created successfully")
conn.close()
"""
COLORS
"""
conn = sqlite3.connect('/Users/prashantvaidya/Desktop/Myntra_web/myntra.db')
print("Database opened successfully")
#Setting up data for colors
color_list = ['aqua', 'black', 'blue', 'fuchsia', 'green', 'gray', 'lime', 'maroon', 'navy', 'olive', 'purple', 'red', 'silver', 'teal', 'white', 'yellow', 'brown', 'pink', 'plum']
colors = []
with open('db_csv/colors.csv', newline='') as csvfile:
data = csv.reader(csvfile, delimiter=',')
for row in data:
colors.append(row)
no_of_ids = len(ids)
print(len(colors), len(ids))
for i in range(no_of_ids):
colors[i].insert(0, ids[i])
print(colors)
Create_table('colors')
for color in color_list:
add_column("colors", color)
for apparel in colors:
#check for id insert
flag = False
for color in apparel:
if (color == '1'):
break;
if not flag:
insert('colors', color)
flag = True
else:
update_column('colors', color, 1)
conn.commit()
print("Colors database created successfully")
conn.close()