-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdatabase.py
45 lines (38 loc) · 1.42 KB
/
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
import pandas as pd
from pathlib import Path
class Database:
# Managt das Speichern und Auslesen der Statistik
def __init__(self, databaseFileName):
self._data = None
dirpath = Path(__file__).cwd().as_posix()
self.dbFileURL = dirpath + databaseFileName
self._readFile()
def addRecord(self, typeOfGame, time, rounds, winner):
new_row = {'typeOfGame': str(typeOfGame),
'time': str(time),
'rounds': str(rounds),
'winner': str(winner),
}
self._data = self._data.append(new_row, ignore_index=True)
self._saveFile()
@property
def records(self):
records = []
for record in self._data.values:
recordMap = {'typeOfGame': record[0],
'time': record[1],
'rounds': record[2],
'winner': record[3],
}
records.append(recordMap)
return records
def _saveFile(self):
try:
self._data.to_csv(self.dbFileURL, encoding='utf-8', index=False)
except:
print("database.py: Error writing to the db file: " + self.dbFileURL)
def _readFile(self):
try:
self._data: pd.DataFrame = pd.read_csv(self.dbFileURL)
except:
print("database.py: Error reading the db file: " + self.dbFileURL)