PySimpleTable
Lightweight Python 2D table object with column headers
For 2D data objects in Python, you have 3 main options:
- Numpy Array
- Pandas DataFrame (built on np.array)
- SQL table
Numpy and Pandas are great for working with a complete set of data, but not very efficient for building up row by row.
SQL is good for building up the object row by row, but you have to write SQL and leave the world of Python objects.
PySimpleTable tries to find the middle ground with more flexibility than Numpy or Pandas for incrementally building a 2D object without...