Package gavo :: Package formats :: Module votable
[frames] | no frames]

Source Code for Module gavo.formats.votable

 1  """ 
 2  A facade for parsing and generating VOTables to and from internal data 
 3  representations. 
 4   
 5  The actual implementations are in two separate modules.  Always access 
 6  them through this module. 
 7  """ 
 8   
 9  #c Copyright 2008-2019, the GAVO project 
10  #c 
11  #c This program is free software, covered by the GNU GPL.  See the 
12  #c COPYING file in the source distribution. 
13   
14   
15  # Not checked by pyflakes: API file with gratuitous imports 
16   
17  from gavo.formats.votableread import (makeTableDefForVOTable, 
18          makeDDForVOTable, uploadVOTable, 
19          AutoQuotedNameMaker, QuotedNameMaker) 
20  from gavo.formats.votablewrite import (getAsVOTable, 
21          writeAsVOTable, makeVOTable, VOTableContext) 
22