a dictionary that lets you do d['a'] as well as d.a this is only used
to store a Row
|
|
__init__(self,
*args,
**kwargs)
x.__init__(...) initializes x; see help(type(x)) for signature |
source code
|
|
|
|
|
|
|
|
|
|
__delitem__(object,
name)
Delete a named attribute on an object; delattr(x, 'y') is equivalent
to ``del x.y''. |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| as_dict(self,
datetime_to_str=False,
custom_types=None) |
source code
|
|
|
|
as_xml(self,
row_name='row',
colnames=None,
indent=' ') |
source code
|
|
|
|
as_json(self,
mode='object',
default=None,
colnames=None,
serialize=True,
**kwargs)
serializes the table to a JSON list of objects kwargs are passed to
.as_dict method only "object" mode supported for single row |
source code
|
|
|
Inherited from object:
__delattr__,
__format__,
__getattribute__,
__hash__,
__new__,
__reduce__,
__reduce_ex__,
__setattr__,
__sizeof__,
__subclasshook__
|