Browse Source

Update docstrings

doc-issue-template
MrS0m30n3 10 years ago
parent
commit
a84e37e880
1 changed files with 18 additions and 5 deletions
  1. 23
      youtube_dl_gui/__init__.py

23
youtube_dl_gui/__init__.py

@ -1,6 +1,17 @@
#!/usr/bin/env python2 #!/usr/bin/env python2
''' Youtube-dlg __init__ file. '''
"""Youtubedlg __init__ file.
Responsible on how the package looks from the outside.
Example:
In order to load the GUI from a python script.
import youtube_dl_gui
youtube_dl_gui.main()
"""
import sys import sys
import os.path import os.path
@ -32,10 +43,12 @@ from .utils import get_config_path
def main(): def main():
'''
Real main. Set configuration path,
enable managers and call main app window.
'''
"""The real main.
Sets configuration path, enables the managers like OptionsManager,
LogManager, etc.. and creates the main app window.
"""
config_path = os.path.join(get_config_path(), __appname__.lower()) config_path = os.path.join(get_config_path(), __appname__.lower())
opt_manager = OptionsManager(config_path) opt_manager = OptionsManager(config_path)

Loading…
Cancel
Save