├── .gitignore └── video1 ├── main.py ├── requirements.txt └── templates ├── index.html └── partials └── table.html /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | *.pyc 3 | db.sqlite3 4 | notes*.txt -------------------------------------------------------------------------------- /video1/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbytes-io/fastapi-htmx-example/HEAD/video1/main.py -------------------------------------------------------------------------------- /video1/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbytes-io/fastapi-htmx-example/HEAD/video1/requirements.txt -------------------------------------------------------------------------------- /video1/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbytes-io/fastapi-htmx-example/HEAD/video1/templates/index.html -------------------------------------------------------------------------------- /video1/templates/partials/table.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbytes-io/fastapi-htmx-example/HEAD/video1/templates/partials/table.html --------------------------------------------------------------------------------