添加了更多的主题, 修复了输入不存在主题时报错

This commit is contained in:
MarkusJoe
2022-02-09 16:20:53 +08:00
parent 494cc7fea2
commit baf99a905c
317 files changed
+111 -324

No files matched your search

+12 -7
View File
@@ -7,22 +7,27 @@
import sqlite3
from typing import Any
from db.db import fetch_table
def re_sort_number_image(origin_number: str, theme: str) -> list:
def re_sort_number_image(origin_number: str, theme: str) -> tuple[bool, bool, bool, bool] | list[
bool | list[Any] | Any]:
"""
返回一个排列好的svg base64代码列表
:param theme:
:param origin_number:
:return:
"""
try:
cursor.execute('select * from %(theme_db)s' % {'theme_db': theme} )
except sqlite3.OperationalError:
return False
table_list = fetch_table()
if theme not in table_list:
return False, False, False, False
width_list = []
height_list = []
b_64_list = []
cursor.execute('select * from %(name)s' % {'name': theme})
data = cursor.fetchall()
for i in data:
width_list.append(i[2])
@@ -53,11 +58,11 @@ def re_sort_number_image(origin_number: str, theme: str) -> list:
elif i == '9':
final_b64_img_code.append(b_64_list[9])
return final_b64_img_code, width_list[0], height_list[0]
return [True, final_b64_img_code, width_list[0], height_list[0]]
else:
for i in range(10):
final_b64_img_code.append(b_64_list[0])
return final_b64_img_code, width_list[0], height_list[0]
return [True, final_b64_img_code, width_list[0], height_list[0]]
if __name__ != '__main__':