├── .github ├── FUNDING.yml ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── moban-update.yml │ └── pythonpublish.yml ├── .gitignore ├── .moban.d ├── custom_README.rst.jj2 ├── custom_setup.py.jj2 ├── custom_travis.yml.jj2 ├── docs │ └── source │ │ ├── custom_conf.py.jj2 │ │ └── flask-excel-index.rst.jj2 ├── requirements.txt └── tests │ └── custom_requirements.txt.jj2 ├── .moban.yml ├── .travis.yml ├── CHANGELOG.rst ├── CONTRIBUTORS.rst ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.rst ├── changelog.yml ├── docs ├── Makefile ├── make.bat ├── requirements.txt └── source │ ├── _static │ ├── Thumbs.db │ ├── handson-view.png │ └── logo.gif │ ├── _templates │ └── layout.html │ ├── _themes │ ├── flask_small │ │ ├── layout.html │ │ ├── static │ │ │ └── flasky.css_t │ │ └── theme.conf │ └── flask_theme_support.py │ ├── conf.py │ ├── index.rst │ └── spelling_wordlist.txt ├── document.bat ├── document.sh ├── examples ├── README.rst ├── database_example.py ├── database_example_formatted.py ├── example_for_upload.csv ├── tiny_example.py └── zipped_csv │ ├── README.rst │ └── example.py ├── flask_excel.yaml ├── flask_excel └── __init__.py ├── format.sh ├── lint.sh ├── requirements.txt ├── rnd_requirements.txt ├── sample-data.xls ├── setup.cfg ├── setup.py ├── test.bat ├── test.sh └── tests ├── _compact.py ├── requirements.txt ├── test_database_io.py ├── test_extra_methods_of_request.py ├── test_make_responses.py ├── test_upload_n_download_excel.py └── testapp.py /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyexcel-webwares/Flask-Excel/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyexcel-webwares/Flask-Excel/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/moban-update.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyexcel-webwares/Flask-Excel/HEAD/.github/workflows/moban-update.yml -------------------------------------------------------------------------------- /.github/workflows/pythonpublish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyexcel-webwares/Flask-Excel/HEAD/.github/workflows/pythonpublish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyexcel-webwares/Flask-Excel/HEAD/.gitignore -------------------------------------------------------------------------------- /.moban.d/custom_README.rst.jj2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyexcel-webwares/Flask-Excel/HEAD/.moban.d/custom_README.rst.jj2 -------------------------------------------------------------------------------- /.moban.d/custom_setup.py.jj2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyexcel-webwares/Flask-Excel/HEAD/.moban.d/custom_setup.py.jj2 -------------------------------------------------------------------------------- /.moban.d/custom_travis.yml.jj2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyexcel-webwares/Flask-Excel/HEAD/.moban.d/custom_travis.yml.jj2 -------------------------------------------------------------------------------- /.moban.d/docs/source/custom_conf.py.jj2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyexcel-webwares/Flask-Excel/HEAD/.moban.d/docs/source/custom_conf.py.jj2 -------------------------------------------------------------------------------- /.moban.d/docs/source/flask-excel-index.rst.jj2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyexcel-webwares/Flask-Excel/HEAD/.moban.d/docs/source/flask-excel-index.rst.jj2 -------------------------------------------------------------------------------- /.moban.d/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyexcel-webwares/Flask-Excel/HEAD/.moban.d/requirements.txt -------------------------------------------------------------------------------- /.moban.d/tests/custom_requirements.txt.jj2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyexcel-webwares/Flask-Excel/HEAD/.moban.d/tests/custom_requirements.txt.jj2 -------------------------------------------------------------------------------- /.moban.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyexcel-webwares/Flask-Excel/HEAD/.moban.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyexcel-webwares/Flask-Excel/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyexcel-webwares/Flask-Excel/HEAD/CHANGELOG.rst -------------------------------------------------------------------------------- /CONTRIBUTORS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyexcel-webwares/Flask-Excel/HEAD/CONTRIBUTORS.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyexcel-webwares/Flask-Excel/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyexcel-webwares/Flask-Excel/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyexcel-webwares/Flask-Excel/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyexcel-webwares/Flask-Excel/HEAD/README.rst -------------------------------------------------------------------------------- /changelog.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyexcel-webwares/Flask-Excel/HEAD/changelog.yml -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyexcel-webwares/Flask-Excel/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyexcel-webwares/Flask-Excel/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /docs/source/_static/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyexcel-webwares/Flask-Excel/HEAD/docs/source/_static/Thumbs.db -------------------------------------------------------------------------------- /docs/source/_static/handson-view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyexcel-webwares/Flask-Excel/HEAD/docs/source/_static/handson-view.png -------------------------------------------------------------------------------- /docs/source/_static/logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyexcel-webwares/Flask-Excel/HEAD/docs/source/_static/logo.gif -------------------------------------------------------------------------------- /docs/source/_templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyexcel-webwares/Flask-Excel/HEAD/docs/source/_templates/layout.html -------------------------------------------------------------------------------- /docs/source/_themes/flask_small/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyexcel-webwares/Flask-Excel/HEAD/docs/source/_themes/flask_small/layout.html -------------------------------------------------------------------------------- /docs/source/_themes/flask_small/static/flasky.css_t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyexcel-webwares/Flask-Excel/HEAD/docs/source/_themes/flask_small/static/flasky.css_t -------------------------------------------------------------------------------- /docs/source/_themes/flask_small/theme.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyexcel-webwares/Flask-Excel/HEAD/docs/source/_themes/flask_small/theme.conf -------------------------------------------------------------------------------- /docs/source/_themes/flask_theme_support.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyexcel-webwares/Flask-Excel/HEAD/docs/source/_themes/flask_theme_support.py -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyexcel-webwares/Flask-Excel/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyexcel-webwares/Flask-Excel/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/spelling_wordlist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyexcel-webwares/Flask-Excel/HEAD/docs/source/spelling_wordlist.txt -------------------------------------------------------------------------------- /document.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyexcel-webwares/Flask-Excel/HEAD/document.bat -------------------------------------------------------------------------------- /document.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyexcel-webwares/Flask-Excel/HEAD/document.sh -------------------------------------------------------------------------------- /examples/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyexcel-webwares/Flask-Excel/HEAD/examples/README.rst -------------------------------------------------------------------------------- /examples/database_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyexcel-webwares/Flask-Excel/HEAD/examples/database_example.py -------------------------------------------------------------------------------- /examples/database_example_formatted.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyexcel-webwares/Flask-Excel/HEAD/examples/database_example_formatted.py -------------------------------------------------------------------------------- /examples/example_for_upload.csv: -------------------------------------------------------------------------------- 1 | id,name 2 | 1,News 3 | 2,Sports 4 | 3,Game 5 | -------------------------------------------------------------------------------- /examples/tiny_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyexcel-webwares/Flask-Excel/HEAD/examples/tiny_example.py -------------------------------------------------------------------------------- /examples/zipped_csv/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyexcel-webwares/Flask-Excel/HEAD/examples/zipped_csv/README.rst -------------------------------------------------------------------------------- /examples/zipped_csv/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyexcel-webwares/Flask-Excel/HEAD/examples/zipped_csv/example.py -------------------------------------------------------------------------------- /flask_excel.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyexcel-webwares/Flask-Excel/HEAD/flask_excel.yaml -------------------------------------------------------------------------------- /flask_excel/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyexcel-webwares/Flask-Excel/HEAD/flask_excel/__init__.py -------------------------------------------------------------------------------- /format.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyexcel-webwares/Flask-Excel/HEAD/format.sh -------------------------------------------------------------------------------- /lint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyexcel-webwares/Flask-Excel/HEAD/lint.sh -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyexcel-webwares/Flask-Excel/HEAD/requirements.txt -------------------------------------------------------------------------------- /rnd_requirements.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sample-data.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyexcel-webwares/Flask-Excel/HEAD/sample-data.xls -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | description-file = README.rst 3 | [bdist_wheel] 4 | universal = 1 5 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyexcel-webwares/Flask-Excel/HEAD/setup.py -------------------------------------------------------------------------------- /test.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyexcel-webwares/Flask-Excel/HEAD/test.bat -------------------------------------------------------------------------------- /test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyexcel-webwares/Flask-Excel/HEAD/test.sh -------------------------------------------------------------------------------- /tests/_compact.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyexcel-webwares/Flask-Excel/HEAD/tests/_compact.py -------------------------------------------------------------------------------- /tests/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyexcel-webwares/Flask-Excel/HEAD/tests/requirements.txt -------------------------------------------------------------------------------- /tests/test_database_io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyexcel-webwares/Flask-Excel/HEAD/tests/test_database_io.py -------------------------------------------------------------------------------- /tests/test_extra_methods_of_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyexcel-webwares/Flask-Excel/HEAD/tests/test_extra_methods_of_request.py -------------------------------------------------------------------------------- /tests/test_make_responses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyexcel-webwares/Flask-Excel/HEAD/tests/test_make_responses.py -------------------------------------------------------------------------------- /tests/test_upload_n_download_excel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyexcel-webwares/Flask-Excel/HEAD/tests/test_upload_n_download_excel.py -------------------------------------------------------------------------------- /tests/testapp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyexcel-webwares/Flask-Excel/HEAD/tests/testapp.py --------------------------------------------------------------------------------