Package saga :: Package replica
[frames] | no frames]

Source Code for Package saga.replica

 1  #  Copyright (c) 2005-2009 Hartmut Kaiser 
 2  #  Copyright (c) 2010 Ole Weidner 
 3  #  
 4  #  Use, modification and distribution is subject to the Boost Software 
 5  #  License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at 
 6  #  http://www.boost.org/LICENSE_1_0.txt) 
 7   
 8  # This file must be located inside a directory named SAGA/replica which in  
 9  # turn should be located in a directory listed in your PYTHON_PATH 
10   
11  """ 
12  The SAGA Replica API package.  
13   
14  The SAGA replica API is used to interact with local and remote file replica 
15  catalogs. A replica catalog maintains a list of physical location for a 
16  logical file. 
17   
18  More on the concepts of the SAGA API can be found here: 
19  U{http://www.gridforum.org/documents/GFD.90.pdf} 
20  """ 
21   
22  from _replica import *   # import logicalfile package 
23   
24 -class directory(_replica.directory):
25 pass
26
27 -class entry(_replica.entry):
28 pass
29
30 -class flags(_replica.flags):
31 pass
32