Package obitools :: Package table
[hide private]
[frames] | no frames]

Package table

source code

Submodules [hide private]
  • obitools.table.csv: obitools.table.csv module provides an iterator adapter allowing to parse csv (comma separatted value) file

Classes [hide private]
  Table
Tables are list of rows of the same model
  _Row
  TableRow
  iTableIterator
  TableIterator
  ProjectionIterator
  SelectionIterator
  UnionIterator
  TableIteratorAsDict
Functions [hide private]
 
tableFactory(tableiterator) source code
 
projectTable(tableiterator, *cols) source code
 
subTable(tableiterator, **conditions) source code
c{Table}
concatTables(*itables)
Concatene severals tables.
source code
Variables [hide private]
  __package__ = 'obitools.table'

Imports: imap, count, chain


Function Details [hide private]

concatTables(*itables)

source code 

Concatene severals tables.

concatenation is done using the UnionIterator

Parameters:
  • itables (iTableIterator or Table)
Returns: c{Table}
a new Table

See Also: UnionIterator