pretty-tables

Create pretty tables from headers and rows, perfect for console output.

MIT License

Downloads
2.8K
Stars
7
Committers
2
pretty-tables - v3.1.0 Latest Release

Published by Justintime50 about 1 year ago

  • Removes the validation requiring the colors array to match the length of the columns. When no color is passed for a column, the formatting will be reset to default
  • Introduces the Colors.none enum to be used instead of None on the colors array
pretty-tables - v3.0.0

Published by Justintime50 over 1 year ago

  • Drops support for Python 3.7
pretty-tables - v2.0.3

Published by Justintime50 almost 3 years ago

  • Fixes the reference to py.typed in setup.py so packages can pull in the typing of this package properly
pretty-tables - v2.0.2

Published by Justintime50 almost 3 years ago

  • Adds mypy to run type checking and publishes types with new py.typed file
pretty-tables - v2.0.1

Published by Justintime50 almost 3 years ago

  • Adds missing __all__ variable for imports
pretty-tables - v2.0.0

Published by Justintime50 almost 3 years ago

  • Refactored the entire app to be more straightforward to use. Create a new table by calling pretty_tables.create() and pass in your arguments
  • Added missing white and black colors, changed how to invoke the colors (now pretty_tables.Colors.blue instead of pretty_tables.TableColors.OKBLUE)
  • Validate color parameter which was previously skipped
  • Overhauls documentation providing all customization options (closes #2)
pretty-tables - v1.3.0

Published by Justintime50 about 3 years ago

  • Re-adds the horizontal break between header and table content that was accidentally removed in v1.2.0
  • Bumps minimum Python version to 3.7
pretty-tables - v1.2.0

Published by Justintime50 about 3 years ago

  • Adds the ability to change column colors statically (index) or dynamically based on truthyness (closes #1, thanks @gagelarsen)
pretty-tables - v1.1.0

Published by Justintime50 over 3 years ago

  • Adds horizontal break between header and table content
  • Small refactor of stringify Python True/False when inserting to a table
pretty-tables - v1.0.0

Published by Justintime50 almost 4 years ago

  • Initial release
  • Pass headers and rows to generate a uniformly dispersed pretty table
  • Added input validation to ensure headers/rows were set and valid lists and correct length