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 needing to use SQL. Once the 2D object is created, call an included method to convert it to a more efficient and powerful Numpy Array or Pandas DataFrame for the real work.

A PySimpleTable has column headers names. Cells are referenced by:
tbl[row_num][col_num]
tbl[row_num]['colname']
Rows are added easily. Columns cannot be added or removed. Other features include:
- sorting by column(s)
- filter by function
- convert to Numpy Array or Pandas DataFrame

Project Activity

See All Activity >

Categories

Data Formats

License

BSD License

Follow PySimpleTable

PySimpleTable Web Site

You Might Also Like
Our Free Plans just got better! | Auth0 by Okta Icon
Our Free Plans just got better! | Auth0 by Okta

With up to 25k MAUs and unlimited Okta connections, our Free Plan lets you focus on what you do best—building great apps.

You asked, we delivered! Auth0 is excited to expand our Free and Paid plans to include more options so you can focus on building, deploying, and scaling applications without having to worry about your secuirty. Auth0 now, thank yourself later.
Try free now
Rate This Project
Login To Rate This Project

User Reviews

Be the first to post a review of PySimpleTable!

Additional Project Details

Intended Audience

Developers

Programming Language

Python

Related Categories

Python Data Formats Software

Registered

2012-09-12