Library for loading and manipulating tabular data.
Project description
Tableview
=========
A simple python module for manipulating tabular data.
Quick Example
-------------
```python
import tableview
table = tableview.load('example.csv')
print table.pretty()
first_three_rows = table.rows[:3]
first_three_cols = table.cols[:3]
intersection = table.rows[:3].cols[:3]
print intersection.pretty()
```
Documentation
-------------
More comprehensive documentation lives here: http://tableview.readthedocs.org/en/latest/
Running the Tests
-----------------
If you are a developer, running the unit tests requires pytest. With pytest installed, execute ``pytest`` in the top level directory.
=========
A simple python module for manipulating tabular data.
Quick Example
-------------
```python
import tableview
table = tableview.load('example.csv')
print table.pretty()
first_three_rows = table.rows[:3]
first_three_cols = table.cols[:3]
intersection = table.rows[:3].cols[:3]
print intersection.pretty()
```
Documentation
-------------
More comprehensive documentation lives here: http://tableview.readthedocs.org/en/latest/
Running the Tests
-----------------
If you are a developer, running the unit tests requires pytest. With pytest installed, execute ``pytest`` in the top level directory.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
tableview-0.2.2.tar.gz
(4.6 kB
view details)
File details
Details for the file tableview-0.2.2.tar.gz
.
File metadata
- Download URL: tableview-0.2.2.tar.gz
- Upload date:
- Size: 4.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f449306aa825f7805ad3167533466d678f954cb9bb489a2c715299d6424247cb |
|
MD5 | 2abd7edfdd6c26efeb54b74af6f8c684 |
|
BLAKE2b-256 | 9a886e96946b9acc9dc61f341e2100d9fc899524fe9b57715721ab99f533a168 |