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.

30 lines
471 B

10 years ago
10 years ago
10 years ago
10 years ago
  1. #! /usr/bin/env python
  2. from sys import exit
  3. try:
  4. import wx
  5. except ImportError as e:
  6. print e
  7. exit(1)
  8. from .YoutubeDLGUI import MainFrame
  9. from .version import __version__
  10. from .data import (
  11. __author__,
  12. __contact__,
  13. __projecturl__,
  14. __appname__,
  15. __license__,
  16. __description__,
  17. __descriptionfull__,
  18. __licensefull__
  19. )
  20. def main():
  21. app = wx.App()
  22. frame = MainFrame()
  23. frame.Centre()
  24. frame.Show()
  25. app.MainLoop()