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

Source Code for Package saga.filesystem

 1  #  Copyright (c) 2005-2009 Hartmut Kaiser  
 2  #  Copyright (c) 2010 Ole Weidner 
 3  #  
 4  #  Distributed under the Boost Software License, Version 1.0. (See accompanying 
 5  #  file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 
 6   
 7  # This file must be located inside a directory named SAGA/file which in turn  
 8  # should be located in a directory listed in your PYTHON_PATH 
 9   
10  """ 
11  The SAGA Filesystem API package.  
12   
13  The SAGA filesystem API is used to operate on local and remote filesystems.  
14   
15  More on the concepts of the SAGA API can be found here: 
16  U{http://www.gridforum.org/documents/GFD.90.pdf} 
17  """ 
18   
19  from _filesystem import *           # import file package 
20   
21 -class directory(_filesystem.directory):
22 pass
23
24 -class file(_filesystem.file):
25 pass
26
27 -class flags(_filesystem.flags):
28 pass
29