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.
51 lines
1.0 KiB
51 lines
1.0 KiB
#!/usr/bin/env python2
|
|
|
|
''' Youtube-dlg __init__ file. '''
|
|
|
|
import sys
|
|
import os.path
|
|
|
|
try:
|
|
import wx
|
|
except ImportError as error:
|
|
print error
|
|
sys.exit(1)
|
|
|
|
# For package use
|
|
from .version import __version__
|
|
from .data import (
|
|
__author__,
|
|
__appname__,
|
|
__contact__,
|
|
__license__,
|
|
__projecturl__,
|
|
__licensefull__,
|
|
__description__,
|
|
__descriptionfull__,
|
|
)
|
|
|
|
from .mainframe import MainFrame
|
|
from .logmanager import LogManager
|
|
from .optionsmanager import OptionsManager
|
|
|
|
from .utils import get_config_path
|
|
|
|
|
|
def main():
|
|
'''
|
|
Real main. Set configuration path,
|
|
enable managers and call main app window.
|
|
'''
|
|
config_path = os.path.join(get_config_path(), __appname__.lower())
|
|
|
|
opt_manager = OptionsManager(config_path)
|
|
log_manager = None
|
|
|
|
if opt_manager.options['enable_log']:
|
|
log_manager = LogManager(config_path, opt_manager.options['log_time'])
|
|
|
|
app = wx.App()
|
|
frame = MainFrame(opt_manager, log_manager)
|
|
frame.Centre()
|
|
frame.Show()
|
|
app.MainLoop()
|