pure python table, operations find, filter, sort, group, top, tail…
theTable = SSTable()
theTable.addIndex( "c_1", 'idx1' );
vCol = [ "c_1", "c_2" ]
theTable.addIndex( vCol, 'idx2' );
theTable.addRow( dict( c_1 = 1, c_2 = 2 ) )
theTable.addRow( dict( c_1 = 1, c_2 = 2 ) )
theTable.addRow( dict( c_1 = 2, c_2 = 3 ) )
#search by index
rs = theTable.findRow( "idx2", ( 1, 2 ) )
pprint( rs.top( 1 ).to_list() )
grs = rs.group( ("c_1") )
- 2014/06/03
Fix bug: Coouldn’t find anything after removeRow
Release files for ltable 0.0.2
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| ltable-0.0.2.zip | 7.3 kB | Details |
Release files / ltable-0.0.2.zip
| Download URL | ltable-0.0.2.zip |
|---|---|
| Size | 7.3 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
029632c3651d6143a58f15e28e6494d56fc3c966518cb560a0774fc8570be8d3
|
|
BLAKE2b-256 checksum How to use checksums |
10aba66fdbaf9b1094945604fb8d9264dd5af11a9057455ba2fb4e3667988308
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |