Skip to content

Latest commit

 

History

History
22 lines (13 loc) · 392 Bytes

README.md

File metadata and controls

22 lines (13 loc) · 392 Bytes

htmldatatables

Installation

CLI

pip install git+https://github.com/juhajokela/htmldatatables.git

requirements.txt

git+https://github.com/juhajokela/htmldatatables.git

Usage

from htmldatatables import render_table

data = [{'key':'value', 'number': 123}, {'key':'another value', 'number': 1337}]

render_table(data)
render_table(data, datatables=True)