├── .github ├── FUNDING.yml ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── lint.yml │ ├── moban-update.yml │ ├── pythonpublish.yml │ └── tests.yml ├── .gitignore ├── .moban.d ├── README.rst ├── custom_setup.py.jj2 ├── docs │ └── source │ │ ├── conf.py │ │ └── index.rst ├── handsontable │ ├── handsontable.rst.jj2 │ ├── rtd_style.css.jj2 │ └── style.css.jj2 ├── requirements.txt ├── setup.py ├── test.bat ├── test.sh └── tests │ ├── fixtures │ ├── book.handsontable.html │ └── sheet_rendering.html │ └── requirements.txt ├── .moban.yml ├── .readthedocs.yml ├── .travis.yml ├── CHANGELOG.rst ├── CONTRIBUTORS.rst ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.rst ├── changelog.yml ├── demo ├── Makefile ├── README.rst ├── census.xls ├── demo.handsontable.html ├── demo.py ├── handsontable.full.min.css ├── handsontable.full.min.js ├── jupyter-demo.png ├── requirements.txt ├── screenshot.png └── working-jupyter-notebook.ipynb ├── docs └── source │ ├── conf.py │ └── index.rst ├── format.sh ├── lint.sh ├── pyexcel-handsontable.yml ├── pyexcel_handsontable ├── __init__.py ├── handsontable.py └── templates │ ├── components.html │ ├── css.html │ ├── embed.html │ ├── full.html │ ├── notebook.html │ ├── pyexcel-handsontable │ ├── ZeroClipboard.js │ ├── ZeroClipboard.swf │ ├── handsontable.min.css │ ├── handsontable.min.js │ ├── main.js │ ├── moment-2.18.1.min.js │ ├── numbro-1.11.0.min.js │ └── pikaday-1.5.1.min.js │ ├── registry.json │ └── sheet.html ├── requirements.txt ├── rnd_requirements.txt ├── setup.py ├── styles ├── rtd_style.css ├── rtd_style.scss ├── style.css └── style.scss ├── test.bat ├── test.sh └── tests ├── fixtures ├── book.handsontable.html ├── book.jupyter_notebook ├── sheet.jupyter_notebook ├── sheet_rendering.html ├── sheet_rendering_custom_urls.html └── sheet_rendering_embed.html ├── mytestwrapper.py ├── requirements.txt ├── test_book.py └── test_sheet.py /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyexcel-renderers/pyexcel-handsontable/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyexcel-renderers/pyexcel-handsontable/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyexcel-renderers/pyexcel-handsontable/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/moban-update.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyexcel-renderers/pyexcel-handsontable/HEAD/.github/workflows/moban-update.yml -------------------------------------------------------------------------------- /.github/workflows/pythonpublish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyexcel-renderers/pyexcel-handsontable/HEAD/.github/workflows/pythonpublish.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyexcel-renderers/pyexcel-handsontable/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyexcel-renderers/pyexcel-handsontable/HEAD/.gitignore -------------------------------------------------------------------------------- /.moban.d/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyexcel-renderers/pyexcel-handsontable/HEAD/.moban.d/README.rst -------------------------------------------------------------------------------- /.moban.d/custom_setup.py.jj2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyexcel-renderers/pyexcel-handsontable/HEAD/.moban.d/custom_setup.py.jj2 -------------------------------------------------------------------------------- /.moban.d/docs/source/conf.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /.moban.d/docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyexcel-renderers/pyexcel-handsontable/HEAD/.moban.d/docs/source/index.rst -------------------------------------------------------------------------------- /.moban.d/handsontable/handsontable.rst.jj2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyexcel-renderers/pyexcel-handsontable/HEAD/.moban.d/handsontable/handsontable.rst.jj2 -------------------------------------------------------------------------------- /.moban.d/handsontable/rtd_style.css.jj2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyexcel-renderers/pyexcel-handsontable/HEAD/.moban.d/handsontable/rtd_style.css.jj2 -------------------------------------------------------------------------------- /.moban.d/handsontable/style.css.jj2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyexcel-renderers/pyexcel-handsontable/HEAD/.moban.d/handsontable/style.css.jj2 -------------------------------------------------------------------------------- /.moban.d/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyexcel-renderers/pyexcel-handsontable/HEAD/.moban.d/requirements.txt -------------------------------------------------------------------------------- /.moban.d/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyexcel-renderers/pyexcel-handsontable/HEAD/.moban.d/setup.py -------------------------------------------------------------------------------- /.moban.d/test.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyexcel-renderers/pyexcel-handsontable/HEAD/.moban.d/test.bat -------------------------------------------------------------------------------- /.moban.d/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyexcel-renderers/pyexcel-handsontable/HEAD/.moban.d/test.sh -------------------------------------------------------------------------------- /.moban.d/tests/fixtures/book.handsontable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyexcel-renderers/pyexcel-handsontable/HEAD/.moban.d/tests/fixtures/book.handsontable.html -------------------------------------------------------------------------------- /.moban.d/tests/fixtures/sheet_rendering.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyexcel-renderers/pyexcel-handsontable/HEAD/.moban.d/tests/fixtures/sheet_rendering.html -------------------------------------------------------------------------------- /.moban.d/tests/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyexcel-renderers/pyexcel-handsontable/HEAD/.moban.d/tests/requirements.txt -------------------------------------------------------------------------------- /.moban.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyexcel-renderers/pyexcel-handsontable/HEAD/.moban.yml -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyexcel-renderers/pyexcel-handsontable/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyexcel-renderers/pyexcel-handsontable/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyexcel-renderers/pyexcel-handsontable/HEAD/CHANGELOG.rst -------------------------------------------------------------------------------- /CONTRIBUTORS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyexcel-renderers/pyexcel-handsontable/HEAD/CONTRIBUTORS.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyexcel-renderers/pyexcel-handsontable/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyexcel-renderers/pyexcel-handsontable/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyexcel-renderers/pyexcel-handsontable/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyexcel-renderers/pyexcel-handsontable/HEAD/README.rst -------------------------------------------------------------------------------- /changelog.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyexcel-renderers/pyexcel-handsontable/HEAD/changelog.yml -------------------------------------------------------------------------------- /demo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyexcel-renderers/pyexcel-handsontable/HEAD/demo/Makefile -------------------------------------------------------------------------------- /demo/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyexcel-renderers/pyexcel-handsontable/HEAD/demo/README.rst -------------------------------------------------------------------------------- /demo/census.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyexcel-renderers/pyexcel-handsontable/HEAD/demo/census.xls -------------------------------------------------------------------------------- /demo/demo.handsontable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyexcel-renderers/pyexcel-handsontable/HEAD/demo/demo.handsontable.html -------------------------------------------------------------------------------- /demo/demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyexcel-renderers/pyexcel-handsontable/HEAD/demo/demo.py -------------------------------------------------------------------------------- /demo/handsontable.full.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyexcel-renderers/pyexcel-handsontable/HEAD/demo/handsontable.full.min.css -------------------------------------------------------------------------------- /demo/handsontable.full.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyexcel-renderers/pyexcel-handsontable/HEAD/demo/handsontable.full.min.js -------------------------------------------------------------------------------- /demo/jupyter-demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyexcel-renderers/pyexcel-handsontable/HEAD/demo/jupyter-demo.png -------------------------------------------------------------------------------- /demo/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyexcel-renderers/pyexcel-handsontable/HEAD/demo/requirements.txt -------------------------------------------------------------------------------- /demo/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyexcel-renderers/pyexcel-handsontable/HEAD/demo/screenshot.png -------------------------------------------------------------------------------- /demo/working-jupyter-notebook.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyexcel-renderers/pyexcel-handsontable/HEAD/demo/working-jupyter-notebook.ipynb -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyexcel-renderers/pyexcel-handsontable/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyexcel-renderers/pyexcel-handsontable/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /format.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyexcel-renderers/pyexcel-handsontable/HEAD/format.sh -------------------------------------------------------------------------------- /lint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyexcel-renderers/pyexcel-handsontable/HEAD/lint.sh -------------------------------------------------------------------------------- /pyexcel-handsontable.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyexcel-renderers/pyexcel-handsontable/HEAD/pyexcel-handsontable.yml -------------------------------------------------------------------------------- /pyexcel_handsontable/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyexcel-renderers/pyexcel-handsontable/HEAD/pyexcel_handsontable/__init__.py -------------------------------------------------------------------------------- /pyexcel_handsontable/handsontable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyexcel-renderers/pyexcel-handsontable/HEAD/pyexcel_handsontable/handsontable.py -------------------------------------------------------------------------------- /pyexcel_handsontable/templates/components.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyexcel-renderers/pyexcel-handsontable/HEAD/pyexcel_handsontable/templates/components.html -------------------------------------------------------------------------------- /pyexcel_handsontable/templates/css.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyexcel-renderers/pyexcel-handsontable/HEAD/pyexcel_handsontable/templates/css.html -------------------------------------------------------------------------------- /pyexcel_handsontable/templates/embed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyexcel-renderers/pyexcel-handsontable/HEAD/pyexcel_handsontable/templates/embed.html -------------------------------------------------------------------------------- /pyexcel_handsontable/templates/full.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyexcel-renderers/pyexcel-handsontable/HEAD/pyexcel_handsontable/templates/full.html -------------------------------------------------------------------------------- /pyexcel_handsontable/templates/notebook.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyexcel-renderers/pyexcel-handsontable/HEAD/pyexcel_handsontable/templates/notebook.html -------------------------------------------------------------------------------- /pyexcel_handsontable/templates/pyexcel-handsontable/ZeroClipboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyexcel-renderers/pyexcel-handsontable/HEAD/pyexcel_handsontable/templates/pyexcel-handsontable/ZeroClipboard.js -------------------------------------------------------------------------------- /pyexcel_handsontable/templates/pyexcel-handsontable/ZeroClipboard.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyexcel-renderers/pyexcel-handsontable/HEAD/pyexcel_handsontable/templates/pyexcel-handsontable/ZeroClipboard.swf -------------------------------------------------------------------------------- /pyexcel_handsontable/templates/pyexcel-handsontable/handsontable.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyexcel-renderers/pyexcel-handsontable/HEAD/pyexcel_handsontable/templates/pyexcel-handsontable/handsontable.min.css -------------------------------------------------------------------------------- /pyexcel_handsontable/templates/pyexcel-handsontable/handsontable.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyexcel-renderers/pyexcel-handsontable/HEAD/pyexcel_handsontable/templates/pyexcel-handsontable/handsontable.min.js -------------------------------------------------------------------------------- /pyexcel_handsontable/templates/pyexcel-handsontable/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyexcel-renderers/pyexcel-handsontable/HEAD/pyexcel_handsontable/templates/pyexcel-handsontable/main.js -------------------------------------------------------------------------------- /pyexcel_handsontable/templates/pyexcel-handsontable/moment-2.18.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyexcel-renderers/pyexcel-handsontable/HEAD/pyexcel_handsontable/templates/pyexcel-handsontable/moment-2.18.1.min.js -------------------------------------------------------------------------------- /pyexcel_handsontable/templates/pyexcel-handsontable/numbro-1.11.0.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyexcel-renderers/pyexcel-handsontable/HEAD/pyexcel_handsontable/templates/pyexcel-handsontable/numbro-1.11.0.min.js -------------------------------------------------------------------------------- /pyexcel_handsontable/templates/pyexcel-handsontable/pikaday-1.5.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyexcel-renderers/pyexcel-handsontable/HEAD/pyexcel_handsontable/templates/pyexcel-handsontable/pikaday-1.5.1.min.js -------------------------------------------------------------------------------- /pyexcel_handsontable/templates/registry.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyexcel-renderers/pyexcel-handsontable/HEAD/pyexcel_handsontable/templates/registry.json -------------------------------------------------------------------------------- /pyexcel_handsontable/templates/sheet.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | pyexcel>=0.5.0 2 | jinja2 3 | -------------------------------------------------------------------------------- /rnd_requirements.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyexcel-renderers/pyexcel-handsontable/HEAD/setup.py -------------------------------------------------------------------------------- /styles/rtd_style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyexcel-renderers/pyexcel-handsontable/HEAD/styles/rtd_style.css -------------------------------------------------------------------------------- /styles/rtd_style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyexcel-renderers/pyexcel-handsontable/HEAD/styles/rtd_style.scss -------------------------------------------------------------------------------- /styles/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyexcel-renderers/pyexcel-handsontable/HEAD/styles/style.css -------------------------------------------------------------------------------- /styles/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyexcel-renderers/pyexcel-handsontable/HEAD/styles/style.scss -------------------------------------------------------------------------------- /test.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyexcel-renderers/pyexcel-handsontable/HEAD/test.bat -------------------------------------------------------------------------------- /test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyexcel-renderers/pyexcel-handsontable/HEAD/test.sh -------------------------------------------------------------------------------- /tests/fixtures/book.handsontable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyexcel-renderers/pyexcel-handsontable/HEAD/tests/fixtures/book.handsontable.html -------------------------------------------------------------------------------- /tests/fixtures/book.jupyter_notebook: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyexcel-renderers/pyexcel-handsontable/HEAD/tests/fixtures/book.jupyter_notebook -------------------------------------------------------------------------------- /tests/fixtures/sheet.jupyter_notebook: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyexcel-renderers/pyexcel-handsontable/HEAD/tests/fixtures/sheet.jupyter_notebook -------------------------------------------------------------------------------- /tests/fixtures/sheet_rendering.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyexcel-renderers/pyexcel-handsontable/HEAD/tests/fixtures/sheet_rendering.html -------------------------------------------------------------------------------- /tests/fixtures/sheet_rendering_custom_urls.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyexcel-renderers/pyexcel-handsontable/HEAD/tests/fixtures/sheet_rendering_custom_urls.html -------------------------------------------------------------------------------- /tests/fixtures/sheet_rendering_embed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyexcel-renderers/pyexcel-handsontable/HEAD/tests/fixtures/sheet_rendering_embed.html -------------------------------------------------------------------------------- /tests/mytestwrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyexcel-renderers/pyexcel-handsontable/HEAD/tests/mytestwrapper.py -------------------------------------------------------------------------------- /tests/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyexcel-renderers/pyexcel-handsontable/HEAD/tests/requirements.txt -------------------------------------------------------------------------------- /tests/test_book.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyexcel-renderers/pyexcel-handsontable/HEAD/tests/test_book.py -------------------------------------------------------------------------------- /tests/test_sheet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyexcel-renderers/pyexcel-handsontable/HEAD/tests/test_sheet.py --------------------------------------------------------------------------------