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

Source Code for Package pyxb.xmlschema

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