├── .gitignore ├── LICENSE.txt ├── README.md ├── itable-example.ipynb ├── itable ├── __init__.py └── itable.py └── setup.py /.gitignore: -------------------------------------------------------------------------------- 1 | itable.egg-info/ 2 | build/ 3 | dist/ 4 | .ipynb_checkpoints/ 5 | *~ 6 | #* 7 | *.pyc -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgymrek/itable/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgymrek/itable/HEAD/README.md -------------------------------------------------------------------------------- /itable-example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgymrek/itable/HEAD/itable-example.ipynb -------------------------------------------------------------------------------- /itable/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgymrek/itable/HEAD/itable/__init__.py -------------------------------------------------------------------------------- /itable/itable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgymrek/itable/HEAD/itable/itable.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgymrek/itable/HEAD/setup.py --------------------------------------------------------------------------------