You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
296 B

10 years ago
  1. #! /usr/bin/env python
  2. from sys import exit
  3. try:
  4. import wx
  5. except ImportError, e:
  6. print '[ERROR]', e
  7. print 'Please install latest wx.Python'
  8. exit(1)
  9. from .YoutubeDLGUI import MainFrame
  10. def main():
  11. app = wx.App()
  12. frame = MainFrame()
  13. frame.Centre()
  14. frame.Show()
  15. app.MainLoop()