Strings, Numbers and Booleans¶
Strings¶
- class String(value=Unspecified, **kw)¶
A regular old text string.
Numbers¶
- class Integer(value=Unspecified, **kw)¶
Element type for Python’s int.
- class Long(value=Unspecified, **kw)¶
Element type for Python’s integer.
- class Float(value=Unspecified, **kw)¶
Element type for Python’s float.
- class Decimal(value=Unspecified, **kw)¶
Element type for Python’s Decimal.
Booleans¶
- class Boolean(value=Unspecified, **kw)¶
Element type for Python’s
bool.