這篇文章主要講解了python編寫win程序的方法,內(nèi)容清晰明了,對此有興趣的小伙伴可以學(xué)習(xí)一下,相信大家閱讀完之后會有幫助。
目前創(chuàng)新互聯(lián)公司已為1000+的企業(yè)提供了網(wǎng)站建設(shè)、域名、網(wǎng)站空間、綿陽服務(wù)器托管、企業(yè)網(wǎng)站設(shè)計、平輿網(wǎng)站維護等服務(wù),公司將堅持客戶導(dǎo)向、應(yīng)用為本的策略,正道將秉承"和諧、參與、激情"的文化,與客戶和合作伙伴齊心協(xié)力一起成長,共同發(fā)展。python可以編寫win程序。win程序的格式是exe,下面我們就來看一下使用python編寫exe程序的方法。
編寫好python程序后py2exe模塊即可將其打包為exe程序。
實際操作過程:
1、在app.py同一目錄下建立文件,setup.py 內(nèi)容根據(jù)需要增刪改,
#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")] )