| Method Summary |
| |
__init__(self,
v)
Constructor for wrapped view class |
| |
__getattr__(self,
attr)
Supports attribute access for our view subclass |
| |
__getitem__(self,
idx)
Support subscripting of our view subclass |
| |
__getslice__(self,
fromidx,
toidx)
Supports slice retrieval for our view subclass |
| |
__len__(self)
Number of rows in this group |
| |
__setitem__(self,
idx,
val)
Support subscripting and cell assignment for our view subclass |
| |
__setslice__(self,
fromidx,
toidx,
newslice)
Supports slice assignment for our view subclass |
| |
blocked(self,
*args,
**kw)
RTFM - http://www.equi4.com/metakit/python.html |
| |
copy(self,
*args,
**kw)
RTFM - http://www.equi4.com/metakit/python.html |
| |
counts(self,
*args,
**kw)
RTFM - http://www.equi4.com/metakit/python.html |
| |
different(self,
v)
RTFM - http://www.equi4.com/metakit/python.html |
| |
dump(self)
|
| |
filter(self,
*args,
**kw)
RTFM - http://www.equi4.com/metakit/python.html |
| |
filterInPlace(self,
func)
Removes from this view all rows which do not satisfy func. |
| |
find(self,
*args,
**kw)
RTFM - http://www.equi4.com/metakit/python.html |
| |
flatten(self,
*args,
**kw)
RTFM - http://www.equi4.com/metakit/python.html |
| |
getColAsList(self,
colname)
return the column 'colname' of each row, as a list |
| |
getFiltered(self,
func)
shorthand for view.remapwith(view.filter(func)) |
| |
getRowAsDict(self,
idx)
Returns a dict with keys,values in row |
| |
getRowAsList(self,
idx)
return the column 'colname' of each row, as a list |
| |
groupby(self,
*args,
**kw)
RTFM - http://www.equi4.com/metakit/python.html |
| |
hash(self,
*args,
**kw)
RTFM - http://www.equi4.com/metakit/python.html |
| |
hasRowsWhen(self,
func)
Returns 1 if the table has any rows satisfying 'func', or 0 if not |
| |
indices(self,
*args,
**kw)
RTFM - http://www.equi4.com/metakit/python.html |
| |
intersect(self,
v)
RTFM - http://www.equi4.com/metakit/python.html |
| |
join(self,
*args,
**kw)
RTFM - http://www.equi4.com/metakit/python.html |
| |
minus(self,
v)
RTFM - http://www.equi4.com/metakit/python.html |
| |
onlyWhen(self,
func)
Synonym for 'getFiltered' Returns a view that contains only rows
satisfying func |
| |
ordered(self,
*args,
**kw)
RTFM - http://www.equi4.com/metakit/python.html |
| |
pair(self,
v)
RTFM - http://www.equi4.com/metakit/python.html |
| |
product(self,
v)
RTFM - http://www.equi4.com/metakit/python.html |
| |
project(self,
*args,
**kw)
RTFM - http://www.equi4.com/metakit/python.html |
| |
purgeDuplicates(self)
|
| |
remapwith(self,
v)
RTFM - http://www.equi4.com/metakit/python.html |
| |
removeWhen(self,
func)
Shorthand for view.filter... |
| |
rename(self,
*args,
**kw)
RTFM - http://www.equi4.com/metakit/python.html |
| |
search(self,
*args,
**kw)
RTFM - http://www.equi4.com/metakit/python.html |
| |
select(self,
*args,
**kw)
RTFM - http://www.equi4.com/metakit/python.html |
| |
setWhen(self,
func,
values,
**kw)
viewSetWhen(view, func, values) |
| |
sort(self,
*args,
**kw)
RTFM - http://www.equi4.com/metakit/python.html |
| |
sortrev(self,
*args,
**kw)
RTFM - http://www.equi4.com/metakit/python.html |
| |
union(self,
v)
RTFM - http://www.equi4.com/metakit/python.html |
| |
unique(self,
*args,
**kw)
RTFM - http://www.equi4.com/metakit/python.html |