-
Notifications
You must be signed in to change notification settings - Fork 104
/
database_controller.py
49 lines (39 loc) · 1.97 KB
/
database_controller.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
'''
en : All comments were translated using DeepL.
ja : すべてのコメントはDeepLを使用して翻訳されました。
'''
import os, sqlite3, asyncio
db_name = 'database.db' # en:Filename of database ja:データベースのファイル名
table_name = 'translations'
cwd = os.getcwd() # en:Current Working Directory ja:現在の作業フォルダ
db_file = os.path.join(cwd,db_name) # en:Database File ja:データベース・ファイル
try: # en:Create the database File ja:データベース・ファイルの作成
with open(db_file, "x") as fp: # "x" = en:"Create file" ja:「ファイル作成」
pass
print("Database created.")
except FileExistsError as e: # en:Continue if file exists ja:ファイルが存在する場合、続行
pass
db = sqlite3.connect(db_file)
print("Connected to database.")
try: # en:Create translation table ja:翻訳テーブルの作成
db.execute(f'''CREATE TABLE {table_name}
(ID INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL,
MESSAGE TEXT NOT NULL,
DLANG TEXT NOT NULL,
TRANSLATION TEXT);''')
print("Table created.")
except sqlite3.OperationalError as e: # en:Continue if table exists ja:テーブルが存在する場合、続行する
print(e)
pass
async def save(message,translation,dlang): # en:Save the translations ja:翻訳を保存する
db.execute(f'INSERT INTO {table_name} (MESSAGE,DLANG,TRANSLATION) VALUES (\"{message}\", \"{dlang}\", \"{translation}\");')
db.commit()
async def get(message,dlang): # en:Get the translations ja:翻訳を入手する
# en:Return translation or None if nothing found ja:翻訳を返すか、何も見つからなければ None を返す
return db.execute(f'SELECT TRANSLATION FROM {table_name} WHERE MESSAGE="{message}" AND DLANG="{dlang}"').fetchone()
def delete(target_size:int = 52428800):
size = os.path.getsize(db_file)
if size >= target_size:
os.remove(db_file)
def close():
db.close()