mac 上运行 py2app 打包的 Python 代码,部分功能失效

查看 18|回复 0
作者:ljlljl0   
这段 Python 代码在 vscode 运行正常,一旦用 py2app 打包运行,点击就只能导出一个文件,还是空内容。
很神奇,有大佬知道哪里原因吗
#导出知识库功能
def export_table_data():
conn = sqlite3.connect('xx.db')
cursor = conn.cursor()
# 查询数据库中的内容
cursor.execute("SELECT * FROM knowledge_base")
knowledge_base_results = cursor.fetchall()
conn.close()
selected_directory = filedialog.askdirectory(title="选择保存目录")
if selected_directory:
output_directory = os.path.join(selected_directory, "知识库")
os.makedirs(output_directory, exist_ok=True)
for row in knowledge_base_results:
title = row[1]
content = row[2]
filename = title + ".md"
filepath = os.path.join(output_directory, filename)
with open(filepath, "w") as f:
f.write(content)
您需要登录后才可以回帖 登录 | 立即注册

返回顶部