4Suite API Documentation

Module Ft.Xml.XPath.Types

Mappings between Python types and standard XPath object types

Copyright 2004 Fourthought, Inc. (USA).
Detailed license and copyright information: http://4suite.org/COPYRIGHT
Project home, documentation, distributions: http://4suite.org/
Classes:
Fields:

Classes

class BooleanType(__builtin__.object)

Methods

__and__(...)
x.__and__(y) <==> x&y
__cmp__(...)
x.__cmp__(y) <==> cmp(x,y)
x.__coerce__(y) <==> coerce(x, y)
x.__float__() <==> float(x)
__hex__(...)
x.__hex__() <==> hex(x)
__int__(...)
x.__int__() <==> int(x)
x.__long__() <==> long(x)
x.__nonzero__() <==> x != 0
__oct__(...)
x.__oct__() <==> oct(x)
__or__(...)
x.__or__(y) <==> x|y
x.__rand__(y) <==> y&x
x.__repr__() <==> repr(x)
__ror__(...)
x.__ror__(y) <==> y|x
x.__rxor__(y) <==> y^x
__str__(...)
x.__str__() <==> str(x)
__xor__(...)
x.__xor__(y) <==> x^y

Methods inherited from class __builtin__.object

__delattr__, __getattribute__, __hash__, __init__, __new__, __reduce__, __reduce_ex__, __setattr__

Fields


class NodesetType(__builtin__.object)
list() -> new list list(sequence) -> new list initialized from sequence's items

Methods

__add__(...)
x.__add__(y) <==> x+y
x.__contains__(y) <==> y in x
x.__delitem__(y) <==> del x[y]
x.__delslice__(i, j) <==> del x[i:j]

Use of negative indices is not supported.
__eq__(...)
x.__eq__(y) <==> x==y
__ge__(...)
x.__ge__(y) <==> x>=y
x.__getattribute__('name') <==> x.name
x.__getitem__(y) <==> x[y]
x.__getslice__(i, j) <==> x[i:j]

Use of negative indices is not supported.
__gt__(...)
x.__gt__(y) <==> x>y
x.__hash__() <==> hash(x)
x.__iadd__(y) <==> x+=y
x.__imul__(y) <==> x*=y
x.__init__(...) initializes x; see x.__class__.__doc__ for signature
x.__iter__() <==> iter(x)
__le__(...)
x.__le__(y) <==> x<=y
__len__(...)
x.__len__() <==> len(x)
__lt__(...)
x.__lt__(y) <==> x<y
__mul__(...)
x.__mul__(n) <==> x*n
__ne__(...)
x.__ne__(y) <==> x!=y
__new__(...)
T.__new__(S, ...) -> a new object with type S, a subtype of T
x.__repr__() <==> repr(x)
x.__rmul__(n) <==> n*x
x.__setitem__(i, y) <==> x[i]=y
x.__setslice__(i, j, y) <==> x[i:j]=y

Use of negative indices is not supported.
append(...)
L.append(object) -- append object to end
count(...)
L.count(value) -> integer -- return number of occurrences of value
extend(...)
L.extend(iterable) -- extend list by appending elements from the iterable
index(...)
L.index(value, [start, [stop]]) -> integer -- return first index of value
insert(...)
L.insert(index, object) -- insert object before index
pop(...)
L.pop([index]) -> item -- remove and return item at index (default last)
remove(...)
L.remove(value) -- remove first occurrence of value
reverse(...)
L.reverse() -- reverse *IN PLACE*
sort(...)
L.sort(cmpfunc=None) -- stable sort *IN PLACE*; cmpfunc(x, y) -> -1, 0, 1

Methods inherited from class __builtin__.object

__delattr__, __reduce__, __reduce_ex__, __setattr__, __str__

Fields


class NumberType(__builtin__.object)
float(x) -> floating point number

Convert a string or number to a floating point number, if possible.

Methods

__abs__(...)
x.__abs__() <==> abs(x)
__add__(...)
x.__add__(y) <==> x+y
__cmp__(...)
x.__cmp__(y) <==> cmp(x,y)
x.__coerce__(y) <==> coerce(x, y)
__div__(...)
x.__div__(y) <==> x/y
x.__divmod__(y) <==> xdivmod(x, y)y
x.__float__() <==> float(x)
x.__floordiv__(y) <==> x//y
x.__getattribute__('name') <==> x.name
x.__hash__() <==> hash(x)
__int__(...)
x.__int__() <==> int(x)
x.__long__() <==> long(x)
__mod__(...)
x.__mod__(y) <==> x%y
__mul__(...)
x.__mul__(y) <==> x*y
__neg__(...)
x.__neg__() <==> -x
__new__(...)
T.__new__(S, ...) -> a new object with type S, a subtype of T
x.__nonzero__() <==> x != 0
__pos__(...)
x.__pos__() <==> +x
__pow__(...)
x.__pow__(y[, z]) <==> pow(x, y[, z])
x.__radd__(y) <==> y+x
x.__rdiv__(y) <==> y/x
x.__rdivmod__(y) <==> ydivmod(y, x)x
x.__repr__() <==> repr(x)
x.__rfloordiv__(y) <==> y//x
x.__rmod__(y) <==> y%x
x.__rmul__(y) <==> y*x
y.__rpow__(x[, z]) <==> pow(x, y[, z])
x.__rsub__(y) <==> y-x
x.__rtruediv__(y) <==> y/x
__str__(...)
x.__str__() <==> str(x)
__sub__(...)
x.__sub__(y) <==> x-y
x.__truediv__(y) <==> x/y

Methods inherited from class __builtin__.object

__delattr__, __init__, __reduce__, __reduce_ex__, __setattr__

Fields


class StringType(__builtin__.basestring)
unicode(string [, encoding[, errors]]) -> object

Create a new Unicode object from the given encoded string.
encoding defaults to the current default string encoding.
errors can be 'strict', 'replace' or 'ignore' and defaults to 'strict'.

Methods

__add__(...)
x.__add__(y) <==> x+y
__cmp__(...)
x.__cmp__(y) <==> cmp(x,y)
x.__contains__(y) <==> y in x
x.__getattribute__('name') <==> x.name
x.__getitem__(y) <==> x[y]
x.__getslice__(i, j) <==> x[i:j]

Use of negative indices is not supported.
x.__hash__() <==> hash(x)
__len__(...)
x.__len__() <==> len(x)
__mod__(...)
x.__mod__(y) <==> x%y
__mul__(...)
x.__mul__(n) <==> x*n
__new__(...)
T.__new__(S, ...) -> a new object with type S, a subtype of T
x.__repr__() <==> repr(x)
x.__rmod__(y) <==> y%x
x.__rmul__(n) <==> n*x
__str__(...)
x.__str__() <==> str(x)
S.capitalize() -> unicode

Return a capitalized version of S, i.e. make the first character
have upper case.
center(...)
S.center(width) -> unicode

Return S centered in a Unicode string of length width. Padding is done
using spaces.
count(...)
S.count(sub[, start[, end]]) -> int

Return the number of occurrences of substring sub in Unicode string
S[start:end]. Optional arguments start and end are
interpreted as in slice notation.
encode(...)
S.encode([encoding[,errors]]) -> string

Return an encoded string version of S. Default encoding is the current
default string encoding. errors may be given to set a different error
handling scheme. Default is 'strict' meaning that encoding errors raise
a UnicodeEncodeError. Other possible values are 'ignore', 'replace' and
'xmlcharrefreplace' as well as any other name registered with
codecs.register_error that can handle UnicodeEncodeErrors.
S.endswith(suffix[, start[, end]]) -> bool

Return True if S ends with the specified suffix, False otherwise.
With optional start, test S beginning at that position.
With optional end, stop comparing S at that position.
S.expandtabs([tabsize]) -> unicode

Return a copy of S where all tab characters are expanded using spaces.
If tabsize is not given, a tab size of 8 characters is assumed.
find(...)
S.find(sub [,start [,end]]) -> int

Return the lowest index in S where substring sub is found,
such that sub is contained within s[start,end]. Optional
arguments start and end are interpreted as in slice notation.

Return -1 on failure.
index(...)
S.index(sub [,start [,end]]) -> int

Like S.find() but raise ValueError when the substring is not found.
isalnum(...)
S.isalnum() -> bool

Return True if all characters in S are alphanumeric
and there is at least one character in S, False otherwise.
isalpha(...)
S.isalpha() -> bool

Return True if all characters in S are alphabetic
and there is at least one character in S, False otherwise.
S.isdecimal() -> bool

Return True if there are only decimal characters in S,
False otherwise.
isdigit(...)
S.isdigit() -> bool

Return True if all characters in S are digits
and there is at least one character in S, False otherwise.
islower(...)
S.islower() -> bool

Return True if all cased characters in S are lowercase and there is
at least one cased character in S, False otherwise.
S.isnumeric() -> bool

Return True if there are only numeric characters in S,
False otherwise.
isspace(...)
S.isspace() -> bool

Return True if all characters in S are whitespace
and there is at least one character in S, False otherwise.
istitle(...)
S.istitle() -> bool

Return True if S is a titlecased string and there is at least one
character in S, i.e. upper- and titlecase characters may only
follow uncased characters and lowercase characters only cased ones.
Return False otherwise.
isupper(...)
S.isupper() -> bool

Return True if all cased characters in S are uppercase and there is
at least one cased character in S, False otherwise.
join(...)
S.join(sequence) -> unicode

Return a string which is the concatenation of the strings in the
sequence. The separator between elements is S.
ljust(...)
S.ljust(width) -> unicode

Return S left justified in a Unicode string of length width. Padding is
done using spaces.
lower(...)
S.lower() -> unicode

Return a copy of the string S converted to lowercase.
lstrip(...)
S.lstrip([chars]) -> unicode

Return a copy of the string S with leading whitespace removed.
If chars is given and not None, remove characters in chars instead.
If chars is a str, it will be converted to unicode before stripping
replace(...)
S.replace (old, new[, maxsplit]) -> unicode

Return a copy of S with all occurrences of substring
old replaced by new. If the optional argument maxsplit is
given, only the first maxsplit occurrences are replaced.
rfind(...)
S.rfind(sub [,start [,end]]) -> int

Return the highest index in S where substring sub is found,
such that sub is contained within s[start,end]. Optional
arguments start and end are interpreted as in slice notation.

Return -1 on failure.
rindex(...)
S.rindex(sub [,start [,end]]) -> int

Like S.rfind() but raise ValueError when the substring is not found.
rjust(...)
S.rjust(width) -> unicode

Return S right justified in a Unicode string of length width. Padding is
done using spaces.
rstrip(...)
S.rstrip([chars]) -> unicode

Return a copy of the string S with trailing whitespace removed.
If chars is given and not None, remove characters in chars instead.
If chars is a str, it will be converted to unicode before stripping
split(...)
S.split([sep [,maxsplit]]) -> list of strings

Return a list of the words in S, using sep as the
delimiter string. If maxsplit is given, at most maxsplit
splits are done. If sep is not specified, any whitespace string
is a separator.
S.splitlines([keepends]]) -> list of strings

Return a list of the lines in S, breaking at line boundaries.
Line breaks are not included in the resulting list unless keepends
is given and true.
S.startswith(prefix[, start[, end]]) -> bool

Return True if S starts with the specified prefix, False otherwise.
With optional start, test S beginning at that position.
With optional end, stop comparing S at that position.
strip(...)
S.strip([chars]) -> unicode

Return a copy of the string S with leading and trailing
whitespace removed.
If chars is given and not None, remove characters in chars instead.
If chars is a str, it will be converted to unicode before stripping
S.swapcase() -> unicode

Return a copy of S with uppercase characters converted to lowercase
and vice versa.
title(...)
S.title() -> unicode

Return a titlecased version of S, i.e. words start with title case
characters, all remaining cased characters have lower case.
S.translate(table) -> unicode

Return a copy of the string S, where all characters have been mapped
through the given translation table, which must be a mapping of
Unicode ordinals to Unicode ordinals, Unicode strings or None.
Unmapped characters are left untouched. Characters mapped to None
are deleted.
upper(...)
S.upper() -> unicode

Return a copy of S converted to uppercase.
zfill(...)
S.zfill(width) -> unicode

Pad a numeric string x with zeros on the left, to fill a field
of the specified width. The string x is never truncated.

Methods inherited from class __builtin__.object

__delattr__, __init__, __reduce__, __reduce_ex__, __setattr__

Fields

Fields

g_xpathPrimitiveTypes = {<type 'boolean'>: 'boolean', <type 'float'>: 'number', <type 'int'>: 'number', <type 'list'>: 'node-set', <type 'long'>: 'number', <type 'str'>: 'string', <type 'unicode'>: 'string', <type 'bool'>: 'boolean'}
g_xpathRecognizedNodes = {1: True, 2: True, 3: True, 7: True, 8: True, 9: True, 13: True}