/tabulate_html_py

A python script to automatically create a table in html

Primary LanguagePython

tabulate_html.py

A python script to automatically create a table in html

How to use it?

Folow this example:

from tabulate_html import tabulate

headers = ['Nome', 'Idade', 'Cidade']

items = [ ['Wilian', 21, 'Curitiba'], ]

tabulate(items, headers, 'Desenvolvedores')