This module contains presets for formatting tables.
The presets are dictionaries which contain keyword arguments. To apply a preset, the dictionary of the user’s choice has to be passed to easytable.Table.make() or one of the shortcut functions easytable.autotable(), easytable.docl() etc. using a double-star notation (**). Example:
>>> data = dict(a=[1, 2, 3], b=[1, 2], c=[1])
>>> print easytable.docl(d, coltitles=1, **easytable.presets.asciielegant)
===========
a c b
-----------
1 1 1
2 2
3
===========