Package CedarBackup3 :: Package extend
[hide private]
[frames] | no frames]

Source Code for Package CedarBackup3.extend

 1  # -*- coding: iso-8859-1 -*- 
 2  # vim: set ft=python ts=3 sw=3 expandtab: 
 3  # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # 
 4  # 
 5  #              C E D A R 
 6  #          S O L U T I O N S       "Software done right." 
 7  #           S O F T W A R E 
 8  # 
 9  # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # 
10  # 
11  # Author   : Kenneth J. Pronovici <pronovic@ieee.org> 
12  # Language : Python 3 (>= 3.4) 
13  # Project  : Official Cedar Backup Extensions 
14  # Purpose  : Provides package initialization 
15  # 
16  # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # 
17   
18  ######################################################################## 
19  # Module documentation 
20  ######################################################################## 
21   
22  """ 
23  Official Cedar Backup Extensions 
24   
25  This package provides official Cedar Backup extensions.  These are Cedar Backup 
26  actions that are not part of the "standard" set of Cedar Backup actions, but 
27  are officially supported along with Cedar Backup. 
28   
29  @author: Kenneth J. Pronovici <pronovic@ieee.org> 
30  """ 
31   
32   
33  ######################################################################## 
34  # Package initialization 
35  ######################################################################## 
36   
37  # Using 'from CedarBackup3.extend import *' will just import the modules listed 
38  # in the __all__ variable. 
39   
40  __all__ = [ 'amazons3', 'encrypt', 'mbox', 'mysql', 'postgresql', 'split', 'subversion', 'sysinfo', ] 
41