Skip to content

shashikiranrp/tabulate.py

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 

Repository files navigation

tabulate.py

Pretty print tables.

Example:

$ python -c 'import tabulate; tabulate.dumplol([[1,2,3,4,5], ["one", "two", "three"], ["a", "b", "c", "d"]])'
+------+------+-------+------+------+
| col0 | col1 | col2  | col3 | col4 |
+------+------+-------+------+------+
|  1   |  2   |   3   |  4   |  5   |
+------+------+-------+------+------+
| one  | two  | three | N/A  | N/A  |
+------+------+-------+------+------+
|  a   |  b   |   c   |  d   | N/A  |
+------+------+-------+------+------+

About

Pretty print tables.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages