Package Bio :: Package WWW :: Module SCOP
[hide private]
[frames] | no frames]

Source Code for Module Bio.WWW.SCOP

 1  # Copyright 2000 by Jeffrey Chang.  All rights reserved. 
 2  # This code is part of the Biopython distribution and governed by its 
 3  # license.  Please see the LICENSE file that should have been included 
 4  # as part of this package. 
 5   
 6  """ 
 7  This module is deprecated; its functions are now available from Bio.SCOP. 
 8   
 9  Provides code to access SCOP over the WWW.  The main SCOP web page 
10  is available at: 
11  http://scop.mrc-lmb.cam.ac.uk/scop/ 
12   
13  Functions: 
14  search       Access the main CGI script. 
15  _open 
16   
17  """ 
18   
19  import warnings 
20  warnings.warn("Bio.WWW.SCOP was deprecated. Its functionality is now available from Bio.SCOP.") 
21   
22   
23  from Bio import SCOP 
24  search = SCOP.search 
25  _open = SCOP._open 
26