Package lxml :: Module etree :: Class XMLSchema
[hide private]
[frames] | no frames]

Class XMLSchema

object --+    
         |    
_Validator --+
             |
            XMLSchema

XMLSchema(self, etree=None, file=None) Turn a document into an XML Schema validator.

Either pass a schema as Element or ElementTree, or pass a file or filename through the file keyword argument.

Passing the attribute_defaults boolean option will make the schema insert default/fixed attributes into validated documents.

Instance Methods [hide private]
 
__call__(self, etree)
Validate doc using XML Schema.
 
__init__(self, etree=None, file=None)
x.__init__(...) initializes x; see help(type(x)) for signature
a new object with type S, a subtype of T
__new__(T, S, ...)

Inherited from _Validator: assertValid, assert_, validate

Inherited from _Validator (private): _append_log_message, _clear_error_log

Inherited from object: __delattr__, __format__, __getattribute__, __hash__, __reduce__, __reduce_ex__, __repr__, __setattr__, __sizeof__, __str__, __subclasshook__

Properties [hide private]

Inherited from _Validator: error_log

Inherited from object: __class__

Method Details [hide private]

__call__(self, etree)
(Call operator)

 

Validate doc using XML Schema.

Returns true if document is valid, false if not.

__init__(self, etree=None, file=None)
(Constructor)

 
x.__init__(...) initializes x; see help(type(x)) for signature
Overrides: object.__init__

__new__(T, S, ...)

 
Returns: a new object with type S, a subtype of T
Overrides: object.__new__