GitHub - tmu/dimtable: Multidimensional, editable HTML tables with easy mapping to data storage.

Skip to content

Navigation Menu

Sign in

Appearance settings

Dimtable is a Python library that provides editable, multidimensional HTML tables that can be easily mapped to data storage.

Django model integration is provided out of the box.

Requirements

  1. Install Django
  2. Install git
  3. Checkout git repository from https://github.com/tmu/dimtable

Demo instructions

export PYTHONPATH=<path to the root of the project, i.e. the dir that contains README.md>
e.g.
export PYTHONPATH=~/dimtable

cd djangoexample
mysql --user=root -p < create_db.sql
python manage.py syncdb
python manage.py create_ex1_data
python manage.py collectstatic
python manage.py runserver