- 论坛徽章:
- 0
|
新手问:哪有已经编译可用成EXE的程序范例
我来给个简单的例子。用wxPython的。
从这里借用一个Hello world的例子
http://www.linuxjournal.com/article/3776
Hello.py
- #-----------------------------------------------
- # Name: Hello.Py
- # Purpose: The obligatory `hello world' program
- #-----------------------------------------------
- ## import all of the wxPython GUI package
- from wxPython.wx import *
- ## Create a new frame class, derived from the wxPython Frame.
- class MyFrame(wxFrame):
- def __init__(self, parent, id, title):
- # First, call the base class method to create the frame
- wxFrame.__init__(self, parent, id, title,
- wxPoint(100, 100), wxSize(160, 100))
- # Add a panel to display the simple `hello' message
- panel = wxPanel(self, -1)
- wxStaticText(panel, -1, "Hello world of xwPython!",
- wxDLG_PNT(panel, wxPoint(4, 20)), wxDefaultSize)
- # Every wxWindows application must have a class derived from wxApp
- class MyApp(wxApp):
- # wxWindows calls this method to initialize the application
- def OnInit(self):
- # Create an instance of our customized Frame class
- frame = MyFrame(NULL, -1, "Hello!")
- frame.Show(true)
- # Tell wxWindows that this is our main window
- self.SetTopWindow(frame)
- # Return a success flag
- return true
- # if running standalone
- if __name__ == "__main__":
- app = MyApp(0) # Create an instance of the application class
- app.MainLoop() # Tell it to start processing events
复制代码
setup.py
- # setup.py
- from distutils.core import setup
- import py2exe
- opts = {
- "py2exe": {
- "dist_dir": "bin",
- }
- }
- setup (windows=["Hello.py"], options = opts)
复制代码
运行setup.py
生成的Hello.exe在当前目录下的bin目录中
有空了在写写如何给程序加图标、调用InnoSetup生成安装程序。。。  |
|