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.
31 lines
508 B
31 lines
508 B
#! /usr/bin/env python
|
|
|
|
from sys import exit
|
|
|
|
try:
|
|
import wx
|
|
except ImportError, e:
|
|
print '[ERROR]', e
|
|
print 'Please install latest wx.Python'
|
|
exit(1)
|
|
|
|
from .YoutubeDLGUI import MainFrame
|
|
from .version import __version__
|
|
from .data import (
|
|
__author__,
|
|
__contact__,
|
|
__projecturl__,
|
|
__appname__,
|
|
__license__,
|
|
__description__,
|
|
__descriptionfull__,
|
|
__licensefull__
|
|
)
|
|
|
|
def main():
|
|
app = wx.App()
|
|
frame = MainFrame()
|
|
frame.Centre()
|
|
frame.Show()
|
|
app.MainLoop()
|
|
|