Package pyxb :: Package xmlschema
[hide private]
[frames] | no frames]

Source Code for Package pyxb.xmlschema

 1  """XMLSchema -- Classes to support processing W3C XML Schema definitions. 
 2   
 3  This module supports processing DOM model representations of XML schema into a 
 4  Python object representation of the schema component model. 
 5   
 6  The module also provides a top-level class that supports schema processing. 
 7  """ 
 8   
 9  # Get the schema component datatypes 
10  import structures 
11   
12  # Get the bindings relevant to schemas.  NB: Other implementations may be used 
13  # in the future. 
14  from structures import Schema as schema 
15   
16  ## Local Variables: 
17  ## fill-column:78 
18  ## End: 
19