Home | Trees | Index | Help |
|
---|
Package lxml :: Module objectify :: Class ObjectPath |
|
object
--+
|
ObjectPath
Immutable object that represents a compiled object path.
Example for a path: 'root.child[1].{other}child[25]'Method Summary | |
---|---|
x.__init__(...) initializes x; see x.__class__.__doc__ for signature | |
x.__call__(...) <==> x(...) | |
T.__new__(S, ...) -> a new object with type S, a subtype of T | |
x.__str__() <==> str(x) | |
Append a value to the target element in a subtree. | |
hasattr(...)
| |
Set the value of the target element in a subtree. | |
Inherited from object | |
x.__delattr__('name') <==> del x.name | |
x.__getattribute__('name') <==> x.name | |
x.__hash__() <==> hash(x) | |
helper for pickle | |
helper for pickle | |
x.__repr__() <==> repr(x) | |
x.__setattr__('name', value) <==> x.name = value |
Class Variable Summary | |
---|---|
member_descriptor |
find = <member 'find' of 'lxml.objectify.ObjectPath' obj...
|
Method Details |
---|
__init__(...)
x.__init__(...) initializes x; see x.__class__.__doc__ for
signature
|
__call__(x,
...)
x.__call__(...) <==> x(...)
|
__new__(T, S, ...)T.__new__(S, ...) -> a new object with type S, a subtype of T
|
__str__(x)
x.__str__() <==> str(x)
|
addattr(...)Append a value to the target element in a subtree. If any of the children on the path does not exist, it is created. |
setattr(...)Set the value of the target element in a subtree. If any of the children on the path does not exist, it is created. |
Class Variable Details |
---|
find
|
Home | Trees | Index | Help |
|
---|
Generated by Epydoc 2.1 on Sat Aug 18 12:44:28 2007 | http://epydoc.sf.net |