Module __main__
[hide private]
[frames] | no frames]

Source Code for Module __main__

 1  #!/usr/bin/env python 
 2  # -*- coding: utf-8 -*- 
 3  #-------------------------------------------------------------------- 
 4  # Filename: __main__.py 
 5  # Author: Mazhugin Aleksey 
 6  # Created: 2019/07/25 
 7  # ID: $Id: __main__.py 63 2019-09-09 15:31:40Z Aleksey $ 
 8  # URL: $URL: file:///D:/svn_/pybag/trunc/src/__main__.py $ 
 9  # Copyright: Copyright (c) 2019, Mazhugin Aleksey. 
10  # License: BSD 
11  #-------------------------------------------------------------------- 
12   
13   
14  """ 
15  PYBAG - Crossplatform files synchronization and backup portable tools. 
16   
17  See *help.py* for details. 
18  """ 
19   
20  __docformat__ = "restructuredtext" # "epytext" 
21   
22  # Importing 
23  import cli 
24  import cfg 
25  import sys 
26   
27   
28  if __name__=='__main__': 
29      cfg.arguments = sys.argv[:] 
30      cli.mainstart() 
31