您好,这是我的代码,使用了gooey这个GUI的包,打包依旧依靠pyinstaller
[Python] 纯文本查看 复制代码 #
-*- coding: utf-8 -*-
from gooey import Gooey, GooeyParser
def run(keywords):
print(keywords)
@Gooey(
richtext_controls=True, # 打开终端对颜色支持
language='chinese',
header_show_title=False,
program_name="test", # 程序名称
encoding="utf-8", # 设置编码格式,打包的时候遇到问题
progress_regex=r"^progress: (\d+)%$", # 正则,用于模式化运行时进度信息
default_size=(905, 640),
)
def main():
description = "test"
parser = GooeyParser(description=description)
parser.add_argument('keywords', help="关键词")
args = parser.parse_args()
run(args.keywords)
main()
|