Sophie

Sophie

distrib > Mageia > 7 > armv7hl > media > core-release > by-pkgid > 5fcfcb7517038d1f44ab4e478e6e61fa > files > 2767

csound-doc-6.10.0-1.mga7.noarch.rpm

#!/usr/bin/env python
#Boa:App:BoaApp

import wx

import PythonDemoFrame

modules ={u'PythonDemoFrame': [1, 'Main frame of Application', u'PythonDemoFrame.py']}

class BoaApp(wx.App):
    def OnInit(self):
        self.main = PythonDemoFrame.create(None)
        self.main.Show()
        self.SetTopWindow(self.main)
        return True

def main():
    application = BoaApp(0)
    application.MainLoop()

if __name__ == '__main__':
    main()