python可以编写win程序。win程序的格式是exe,下面我们就来看一下使用python编写exe程序的方法。
编写好python程序后py2exe模块即可将其打包为exe程序。
实际操作过程:
1、在app.py同一目录下建立文件,setup.py 内容根据需要增删改,
#setup.py import sys, os from cx_Freeze import setup, Executable __version__ = "1.1.0" #include_files = ['logging.ini', 'config.ini', 'running.png'] include_files = [] excludes = ["tkinter"] #packages = ["os", "idna", "requests","json","base64","pyodbc"] packages = ["os", "idna", "requests","json","base64"] setup( name = "appname", description='App Description', version=__version__, options = {"build_exe": { 'packages': packages, 'include_files': include_files, 'excludes': excludes, 'include_msvcr': True, }}, executables = [Executable("boxLayout.py",base="Win32GUI")] )
2、执行命令
python setup.py bdist_msi
之后生成两个文件夹,build 和dist
在build\exe.win32-3.6找到生成的exe文件
文章标题:创新互联Python教程:python可以编写win程序吗?
URL地址:http://www.mswzjz.cn/qtweb/news44/322794.html
攀枝花网站建设、攀枝花网站运维推广公司-贝锐智能,是专注品牌与效果的网络营销公司;服务项目有等
声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 贝锐智能