大橙子网站建设,新征程启航
为企业提供网站建设、域名注册、服务器等服务
这篇文章主要讲解了python编写win程序的方法,内容清晰明了,对此有兴趣的小伙伴可以学习一下,相信大家阅读完之后会有帮助。
目前创新互联公司已为1000+的企业提供了网站建设、域名、网站空间、绵阳服务器托管、企业网站设计、平舆网站维护等服务,公司将坚持客户导向、应用为本的策略,正道将秉承"和谐、参与、激情"的文化,与客户和合作伙伴齐心协力一起成长,共同发展。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")] )