Skip to content

ryansturmer/tableview

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

48 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Tableview

A simple python module for manipulating tabular data.

Quick Example

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.

About

A python module for working with tables of data, loaded from CSV, tab-separated or text files

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages