Skip to content

A python module for simple table building, manipulation, and output in various formats.

License

Notifications You must be signed in to change notification settings

alan-isaac/SimpleTable

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 

Repository files navigation

SimpleTable

A Python module for simple table building, manipulation, and output in various formats. This module is intended to work with Python 2.7+ (including Python 3 versions).

Basic use:

       mydata = [[11,12],[21,22]]  # data MUST be 2-dimensional
       myheaders = [ "Column 1", "Column 2" ]
       mystubs = [ "Row 1", "Row 2" ]
       tbl = SimpleTable(mydata, myheaders, mystubs, title="Title")
       print( tbl )
       print( tbl.as_csv() )

About

A python module for simple table building, manipulation, and output in various formats.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages