├── .gitignore ├── .travis.yml ├── LICENCE ├── MANIFEST.in ├── README.md ├── gdoctableapppy ├── __init__.py └── gdoctableapp.py ├── images ├── fig1.png ├── fig2.png ├── fig3.png ├── fig4.png ├── fig5.png ├── fig6.png ├── fig7.png ├── fig8.png └── fig9.png ├── setup.py └── tests ├── __init__.py └── test_gdoctableapppy.py /.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | dist 3 | gdoctableapppy.egg-info 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanaikech/gdoctableapppy/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanaikech/gdoctableapppy/HEAD/LICENCE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanaikech/gdoctableapppy/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanaikech/gdoctableapppy/HEAD/README.md -------------------------------------------------------------------------------- /gdoctableapppy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gdoctableapppy/gdoctableapp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanaikech/gdoctableapppy/HEAD/gdoctableapppy/gdoctableapp.py -------------------------------------------------------------------------------- /images/fig1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanaikech/gdoctableapppy/HEAD/images/fig1.png -------------------------------------------------------------------------------- /images/fig2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanaikech/gdoctableapppy/HEAD/images/fig2.png -------------------------------------------------------------------------------- /images/fig3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanaikech/gdoctableapppy/HEAD/images/fig3.png -------------------------------------------------------------------------------- /images/fig4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanaikech/gdoctableapppy/HEAD/images/fig4.png -------------------------------------------------------------------------------- /images/fig5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanaikech/gdoctableapppy/HEAD/images/fig5.png -------------------------------------------------------------------------------- /images/fig6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanaikech/gdoctableapppy/HEAD/images/fig6.png -------------------------------------------------------------------------------- /images/fig7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanaikech/gdoctableapppy/HEAD/images/fig7.png -------------------------------------------------------------------------------- /images/fig8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanaikech/gdoctableapppy/HEAD/images/fig8.png -------------------------------------------------------------------------------- /images/fig9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanaikech/gdoctableapppy/HEAD/images/fig9.png -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanaikech/gdoctableapppy/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_gdoctableapppy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanaikech/gdoctableapppy/HEAD/tests/test_gdoctableapppy.py --------------------------------------------------------------------------------