├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── docs ├── conf.py ├── images │ ├── basic.png │ ├── cell_selector.png │ ├── column_selector.png │ ├── complex.png │ ├── group.png │ ├── horizontal_summary.png │ ├── merge.png │ ├── row_selector.png │ ├── style.png │ └── summary.png ├── index.rst ├── reference.rst └── usage.rst ├── examples.py ├── requirements.txt ├── setup.py ├── tablereport ├── __init__.py ├── selector.py ├── shortcut.py ├── style.py ├── tablereport.py └── writer │ ├── __init__.py │ └── excel.py └── tests.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toaco/tablereport/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toaco/tablereport/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toaco/tablereport/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toaco/tablereport/HEAD/README.md -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toaco/tablereport/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/images/basic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toaco/tablereport/HEAD/docs/images/basic.png -------------------------------------------------------------------------------- /docs/images/cell_selector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toaco/tablereport/HEAD/docs/images/cell_selector.png -------------------------------------------------------------------------------- /docs/images/column_selector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toaco/tablereport/HEAD/docs/images/column_selector.png -------------------------------------------------------------------------------- /docs/images/complex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toaco/tablereport/HEAD/docs/images/complex.png -------------------------------------------------------------------------------- /docs/images/group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toaco/tablereport/HEAD/docs/images/group.png -------------------------------------------------------------------------------- /docs/images/horizontal_summary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toaco/tablereport/HEAD/docs/images/horizontal_summary.png -------------------------------------------------------------------------------- /docs/images/merge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toaco/tablereport/HEAD/docs/images/merge.png -------------------------------------------------------------------------------- /docs/images/row_selector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toaco/tablereport/HEAD/docs/images/row_selector.png -------------------------------------------------------------------------------- /docs/images/style.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toaco/tablereport/HEAD/docs/images/style.png -------------------------------------------------------------------------------- /docs/images/summary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toaco/tablereport/HEAD/docs/images/summary.png -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toaco/tablereport/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/reference.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toaco/tablereport/HEAD/docs/reference.rst -------------------------------------------------------------------------------- /docs/usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toaco/tablereport/HEAD/docs/usage.rst -------------------------------------------------------------------------------- /examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toaco/tablereport/HEAD/examples.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toaco/tablereport/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toaco/tablereport/HEAD/setup.py -------------------------------------------------------------------------------- /tablereport/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toaco/tablereport/HEAD/tablereport/__init__.py -------------------------------------------------------------------------------- /tablereport/selector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toaco/tablereport/HEAD/tablereport/selector.py -------------------------------------------------------------------------------- /tablereport/shortcut.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toaco/tablereport/HEAD/tablereport/shortcut.py -------------------------------------------------------------------------------- /tablereport/style.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toaco/tablereport/HEAD/tablereport/style.py -------------------------------------------------------------------------------- /tablereport/tablereport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toaco/tablereport/HEAD/tablereport/tablereport.py -------------------------------------------------------------------------------- /tablereport/writer/__init__.py: -------------------------------------------------------------------------------- 1 | from .excel import * 2 | -------------------------------------------------------------------------------- /tablereport/writer/excel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toaco/tablereport/HEAD/tablereport/writer/excel.py -------------------------------------------------------------------------------- /tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toaco/tablereport/HEAD/tests.py --------------------------------------------------------------------------------