Trees | Indices | Help |
---|
|
1 # Copyright 2002 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 from Bio.config.DBRegistry import CGIDB, DBGroup 7 8 prodoc_expasy_cgi = CGIDB( 9 name="prodoc-expasy-cgi", 10 doc="Retrieve a prodoc entry by ID", 11 cgi='http://us.expasy.org/cgi-bin/get-prosite-raw.pl', 12 delay=5.0, 13 params=[], 14 key="", 15 ) 16 17 prodoc = DBGroup( 18 name = "prodoc", 19 behavior = "serial" 20 ) 21 prodoc.add(prodoc_expasy_cgi) 22
Trees | Indices | Help |
---|
Generated by Epydoc 3.0.1 on Thu Feb 7 11:51:38 2008 | http://epydoc.sourceforge.net |