-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmini_database.py
285 lines (172 loc) · 9.72 KB
/
mini_database.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
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
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
'''This module has features that you can make simple database for your programms.'''
# import requirements
import csv
import os
from typing import Callable
# check that database folder is exists.
if not os.path.exists(f'{os.getcwd()}/database'):
os.mkdir(f'{os.getcwd()}/database')
class OneFile:
'''This class Can create csv file and with its methodes, you can manage the one csv file.'''
def __init__(self, table_name: str) -> None:
'''This magic method save your table name and current address of its csv form in "database" directory
-> table = OneFile('User') -> give your table name(for example my table will be User[string type] as csv file)'''
self.table_name = table_name
self.address = f'{os.getcwd()}/database/{self.table_name}.csv'
def add_column(self, columns_data: list[str]) -> None:
'''This method create csv file and add column in the csv file.'''
if not os.path.exists(self.address):
with open(self.address, 'w', newline= '') as table_csv:
columns_data.insert(0, 'id')
csv.writer(table_csv).writerow(columns_data)
def add_one_row(self, row_data: list[str], uniq_columns: list[str] = []) -> None:
'''This method add one row to csv file.
if uniq_columns defind a repeated data, it will raise a 'ValueError'.
'''
num_id = 0
with open(self.address, 'r+', newline= '') as table_csv:
for item in csv.DictReader(table_csv):
if uniq_columns:
for col in uniq_columns:
if item.get(col) == (target := row_data[list(item.keys()).index(col) - 1]):
raise ValueError(f'{target} already exists in table.')
num_id += 1
row_data.insert(0, num_id)
csv.writer(table_csv).writerows([row_data])
def delete(self, row_data: dict) -> None:
'''This method delete one row from csv file'''
collected = []
with open(self.address, 'r') as table_csv:
for item in csv.DictReader(table_csv):
mark = 0
for value in row_data.values():
if value in item.values():
mark += 1
if mark != len(row_data):
collected.append(list(item.values())[1:])
columns = list(item.keys())[1:]
os.remove(self.address)
self.add_column(columns)
for row in collected:
self.add_one_row(row)
def get(self, data: dict, multiple: bool = False) -> list[dict]:
'''This method get one(or more if you set multiple True) row from csv file.'''
results = []
with open(self.address, 'r') as table_csv:
for item in csv.DictReader(table_csv):
mark = 0
for value in data.values():
if value in item.values():
mark += 1
if mark == len(data.values()):
results.append(item)
if not multiple:
return results
return results
def filter_statement(self, columns: list[str], orders: list[Callable]) -> list:
'''This method retun list of dicts that filter with func you gave it.'''
results = []
with open(self.address, 'r') as table_csv:
if len(columns) == 1:
for item in csv.DictReader(table_csv):
if bool(orders[0](item[columns[0]])):
results.append(item)
else:
for item in csv.DictReader(table_csv):
mark = 0
for ind, column in enumerate(columns):
if bool(orders[ind](item[column])):
mark += 1
if mark == len(columns):
results.append(item)
return results
def count_row(self) -> int:
'''This method count total of your csv file rows(column won't counted)'''
row_number = -1
with open(self.address, 'r') as csv_file:
for _ in csv.reader(csv_file):
row_number += 1
return row_number
def sum_column(self, field_name: str) -> float:
'''This method return the total amount of a special column that contains float or int numbers'''
total_number = 0
with open(self.address, 'r') as csv_file:
for item in csv.DictReader(csv_file):
total_number += float(item.get(field_name))
return total_number
def median_column(self, field_name: str) -> float:
'''This method returns the median of a special column that contains float or int numbers'''
return self.sum_column(field_name) / self.count_row()
def min_column(self, field_name: str, _order= 'min') -> float:
'''This method returns the minimum int or float number of a special column'''
number = self.median_column(field_name)
with open(self.address, 'r') as csv_file:
for item in csv.DictReader(csv_file):
if _order == 'min':
if float(item.get(field_name)) < number:
number = float(item.get(field_name))
elif _order == 'max':
if float(item.get(field_name)) > number:
number = float(item.get(field_name))
return number
def max_column(self, field_name: str) -> float:
'''This method returns the maximum int or float number of a special column'''
return self.min_column(field_name, 'max')
class Connect:
'''This class under the two csv files that contains data witch make these relatable for each other'''
def __init__(self, table_name_fount: str, table_name_related: str, connected_column: str, related_name: str) -> None:
'''merged_table = Connect('User', 'Meassage', 'id', 'user_id')
-> this object know that "id" from User table used in Message table as "user_id" '''
self.table_name_fount = table_name_fount
self.table_name_related = table_name_related
self.connected_column = connected_column
self.related_name = related_name
self.address_fount = f'{os.getcwd()}/database/{self.table_name_fount}.csv'
self.address_related = f'{os.getcwd()}/database/{self.table_name_related}.csv'
def get_from_related(self, data_from_fount: dict, multiple: bool = False, _address = 'related', _column = 'related') -> list[dict]:
'''This method get related data that connected to fount row you gave.'''
results = []
path = self.address_related if _address == 'related' else self.address_fount
giver_column = self.related_name if _column == 'related' else self.connected_column
fount_column = self.connected_column if _column == 'related' else self.related_name
with open(path, 'r') as related_table:
for item in csv.DictReader(related_table):
if item[giver_column] == data_from_fount[fount_column]:
results.append(item)
if not multiple:
break
return results
def get_from_related_filter(self, data_from_fount: dict, multiple: bool = False, columns: list[str]|list = [], _table: str = 'related') -> list[dict]:
'''This method return only related column data you gave.'''
new_results = []
iterable = self.get_from_related(data_from_fount, multiple) if _table == 'related' else self.get_from_related(data_from_fount, multiple, 'founted', 'founted')
for item in iterable:
data = {}
for column in columns:
data[column] = item.get(column)
new_results.append(data)
return new_results
def get_from_fount(self, data_from_related: dict, multiple: bool = False) -> list:
'''This method get data from fount table that realated to data you gave from related table'''
return self.get_from_related(data_from_related, multiple, 'founted', 'founted')
def get_from_fount_filter(self, data_from_related: dict, multiple: bool = False, columns: list[str] = []) -> list[dict]:
'''This method return only fount column data you gave.'''
return self.get_from_related_filter(data_from_related, multiple, columns, 'founted')
def join_tables(self, file_name: str) -> None:
'''This method create a new csv file of merging of fount and related csv file'''
if os.path.exists((address := f'{os.getcwd()}/database/{file_name}.csv')):
raise FileExistsError(f'{address} is already exists.')
with open(address, 'w', newline= '') as joined_file:
joind_columns = []
joind_rows = []
with open(self.address_fount, 'r') as fount_file, open(self.address_related, 'r') as related_file:
for ind, item in enumerate(csv.DictReader(fount_file)):
if not ind:
new = list(item.keys())
new.extend(list(self.get_from(item)[0])[1:])
joind_columns.append(new)
joind_rows.append([*list(item.values()), *list(self.get_from_related(item)[0].values())])
file = csv.writer(joined_file)
file.writerow(joind_columns[0])
for item in joind_rows:
file.writerows([item])