├── .github └── workflows │ └── tests.yml ├── .gitignore ├── .readthedocs.yaml ├── CHANGES.md ├── LICENSE ├── MANIFEST.in ├── README.md ├── docs ├── Makefile ├── _static │ └── css │ │ └── custom.css ├── api.rst ├── conf.py ├── index.rst ├── make.bat └── quickstart.rst ├── examples ├── flash │ ├── README.md │ ├── app.py │ └── templates │ │ ├── alert.html │ │ ├── base.html │ │ └── index.html ├── load │ ├── README.md │ ├── app.py │ └── templates │ │ ├── base.html │ │ ├── index.html │ │ ├── loadavg.html │ │ └── page2.html └── todos │ ├── README.md │ ├── app.py │ ├── models.py │ ├── static │ ├── base.css │ ├── edit.svg │ ├── index.css │ └── trash.svg │ ├── templates │ ├── _todo.html │ ├── _todo_edit.html │ ├── _todo_input.html │ └── index.html │ └── todo-demo.gif ├── pyproject.toml ├── src └── turbo_flask │ ├── __init__.py │ └── turbo.py ├── tests └── test_turbo.py └── tox.ini /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguelgrinberg/turbo-flask/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguelgrinberg/turbo-flask/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguelgrinberg/turbo-flask/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguelgrinberg/turbo-flask/HEAD/CHANGES.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguelgrinberg/turbo-flask/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguelgrinberg/turbo-flask/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguelgrinberg/turbo-flask/HEAD/README.md -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguelgrinberg/turbo-flask/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_static/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguelgrinberg/turbo-flask/HEAD/docs/_static/css/custom.css -------------------------------------------------------------------------------- /docs/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguelgrinberg/turbo-flask/HEAD/docs/api.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguelgrinberg/turbo-flask/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguelgrinberg/turbo-flask/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguelgrinberg/turbo-flask/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/quickstart.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguelgrinberg/turbo-flask/HEAD/docs/quickstart.rst -------------------------------------------------------------------------------- /examples/flash/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguelgrinberg/turbo-flask/HEAD/examples/flash/README.md -------------------------------------------------------------------------------- /examples/flash/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguelgrinberg/turbo-flask/HEAD/examples/flash/app.py -------------------------------------------------------------------------------- /examples/flash/templates/alert.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguelgrinberg/turbo-flask/HEAD/examples/flash/templates/alert.html -------------------------------------------------------------------------------- /examples/flash/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguelgrinberg/turbo-flask/HEAD/examples/flash/templates/base.html -------------------------------------------------------------------------------- /examples/flash/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguelgrinberg/turbo-flask/HEAD/examples/flash/templates/index.html -------------------------------------------------------------------------------- /examples/load/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguelgrinberg/turbo-flask/HEAD/examples/load/README.md -------------------------------------------------------------------------------- /examples/load/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguelgrinberg/turbo-flask/HEAD/examples/load/app.py -------------------------------------------------------------------------------- /examples/load/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguelgrinberg/turbo-flask/HEAD/examples/load/templates/base.html -------------------------------------------------------------------------------- /examples/load/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguelgrinberg/turbo-flask/HEAD/examples/load/templates/index.html -------------------------------------------------------------------------------- /examples/load/templates/loadavg.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguelgrinberg/turbo-flask/HEAD/examples/load/templates/loadavg.html -------------------------------------------------------------------------------- /examples/load/templates/page2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguelgrinberg/turbo-flask/HEAD/examples/load/templates/page2.html -------------------------------------------------------------------------------- /examples/todos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguelgrinberg/turbo-flask/HEAD/examples/todos/README.md -------------------------------------------------------------------------------- /examples/todos/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguelgrinberg/turbo-flask/HEAD/examples/todos/app.py -------------------------------------------------------------------------------- /examples/todos/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguelgrinberg/turbo-flask/HEAD/examples/todos/models.py -------------------------------------------------------------------------------- /examples/todos/static/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguelgrinberg/turbo-flask/HEAD/examples/todos/static/base.css -------------------------------------------------------------------------------- /examples/todos/static/edit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguelgrinberg/turbo-flask/HEAD/examples/todos/static/edit.svg -------------------------------------------------------------------------------- /examples/todos/static/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguelgrinberg/turbo-flask/HEAD/examples/todos/static/index.css -------------------------------------------------------------------------------- /examples/todos/static/trash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguelgrinberg/turbo-flask/HEAD/examples/todos/static/trash.svg -------------------------------------------------------------------------------- /examples/todos/templates/_todo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguelgrinberg/turbo-flask/HEAD/examples/todos/templates/_todo.html -------------------------------------------------------------------------------- /examples/todos/templates/_todo_edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguelgrinberg/turbo-flask/HEAD/examples/todos/templates/_todo_edit.html -------------------------------------------------------------------------------- /examples/todos/templates/_todo_input.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguelgrinberg/turbo-flask/HEAD/examples/todos/templates/_todo_input.html -------------------------------------------------------------------------------- /examples/todos/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguelgrinberg/turbo-flask/HEAD/examples/todos/templates/index.html -------------------------------------------------------------------------------- /examples/todos/todo-demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguelgrinberg/turbo-flask/HEAD/examples/todos/todo-demo.gif -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguelgrinberg/turbo-flask/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/turbo_flask/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguelgrinberg/turbo-flask/HEAD/src/turbo_flask/__init__.py -------------------------------------------------------------------------------- /src/turbo_flask/turbo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguelgrinberg/turbo-flask/HEAD/src/turbo_flask/turbo.py -------------------------------------------------------------------------------- /tests/test_turbo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguelgrinberg/turbo-flask/HEAD/tests/test_turbo.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguelgrinberg/turbo-flask/HEAD/tox.ini --------------------------------------------------------------------------------