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

Source Code for Package saga.sd

 1  #  Copyright (c) 2005-2009 Hartmut Kaiser
 
 2  # 
 
 3  #  Use, modification and distribution is subject to the Boost Software
 
 4  #  License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
 
 5  #  http://www.boost.org/LICENSE_1_0.txt)
 
 6  
 
 7  # This file must be located inside a directory named SAGA/replica which in 
 
 8  # turn should be located in a directory listed in your PYTHON_PATH
 
 9  
 
10  """
 
11  The SAGA SD (Service Discovery) API package. 
 
12  
 
13  The SAGA Filesystem API is used to interact with service discovery services 
 
14  that are often employed in large-scale distributed systems.
 
15  
 
16  More on the concepts of the SAGA API can be found here:
 
17  U{http://www.gridforum.org/documents/GFD.144.pdf}
 
18  """ 
19  
 
20  from _sd import *   # import SD package 
21  
 
22 -class discoverer(_sd.discoverer):
23 pass
24
25 -class service_data(_sd.service_data):
26 pass
27
28 -class service_description(_sd.service_description):
29 pass
30