我有一个Linux环境下的已经用Python写好的.py文件。每次运行起来就是在Linux环的terminal输入这样的指令 $>python XXX.py dict file opt loc,其中XXX.py是我写的.py文件,dict、file、opt、loc是运行时用户要给出的4个外部参数。总的来说这个XXX.py先在dict这个路径下察看所有类似file的文件,然后根据opt的指令提取数据储存到loc里,最后把生成的data曲线用matplotlib画出来。
这个XXX.py其实很大,功能也比较多,除了我们组,其他的同行也应该能用的到。我老板很喜欢,问我有没有办法把它升级一下,做成一个软件,方便用户使用,这样每次就不用再在terminal输入指令了。
有没有办法基于XXX.py这个文件,用Python写一个有窗口、按钮、下拉菜单、弹出警报等等功能的方便用户使用的可视界面?具体功能无非就是把“python XXX.py dict file opt loc”这个命令转换成窗口和菜单中的选项,最好能把最后生成的data曲线在同一个界面中画出来。重复一下,是Linux环境。
恳请指点!谢谢!
pyQt4 or pyQt5, if you want to produce various reports, curves, etc., you can use Matplotlib.
It feels a bit strange. Shouldn't it be like writing an interface in Java or C++ and then calling Python for function implementation? There should be very few people who use Python directly!