Skip to content

0.5.0

Compare
Choose a tag to compare
@DenverCoder1 DenverCoder1 released this 31 Oct 19:17
· 59 commits to main since this release
88be598

Features

  • Added plain to preset table styles in #50
>>> table2ascii(header=[1,2,3,4], body=[[5,6,7,8], [9,10,11,12]], style=PresetStyle.plain)
 1   2    3    4  
 5   6    7    8  
 9   10   11   12
  • Added cell_padding configurable option in #52
>>> table2ascii(header=['A','B','C'], body=[[1,2,3]], footer=[5,6,7], first_col_heading=True, cell_padding=0)
╔═╦═══╗
║AB C║
╟─╫───╢
║12 3║
╟─╫───╢
║56 7║
╚═╩═══╝

Meta

  • refactor: Support for mypy linting in #51
  • ci: Add support for Python 3.11 (Pyright linting) in #56

Full Changelog: 0.4.0...0.5.0