├── .codespellrc ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── config.yml │ ├── documentation.md │ └── feature_request.md ├── pull_request_template.md └── workflows │ ├── deploy.yaml.off │ └── test.yaml ├── .gitignore ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── MANIFEST.in ├── README.md ├── demo ├── favicon.ico ├── main.py └── requirements.txt ├── docs └── index.html ├── examples ├── README.md ├── adv_app.py ├── adv_app_strip.py ├── basic_ws.py ├── chat_ws.py ├── example.js ├── favicon.ico ├── minimal.py ├── pep8_app.py ├── picovars.css ├── todos1.py ├── todos2.py ├── todos3.py ├── todos4.py └── user_app.py ├── fasthtml ├── __init__.py ├── _modidx.py ├── authmw.py ├── basics.py ├── cli.py ├── common.py ├── components.py ├── components.pyi ├── core.py ├── core.pyi ├── fastapp.py ├── ft.py ├── js.py ├── jupyter.py ├── katex.js ├── live_reload.py ├── oauth.py ├── pico.py ├── starlette.py ├── svg.py ├── toaster.py ├── xtend.py └── xtend.pyi ├── mds.zip ├── nbs ├── .gitignore ├── _quarto.yml ├── api │ ├── 00_core.ipynb │ ├── 01_components.ipynb │ ├── 02_xtend.ipynb │ ├── 03_js.ipynb │ ├── 04_pico.ipynb │ ├── 05_svg.ipynb │ ├── 06_jupyter.ipynb │ ├── 08_oauth.ipynb │ ├── 09_cli.ipynb │ └── README.txt ├── apilist.txt ├── custom.scss ├── explains │ ├── CreateWebhook.png │ ├── CreateWebhook2.png │ ├── Stripe.ipynb │ ├── StripeDashboard_API_Key.png │ ├── StripePaymentPage.jpg │ ├── SubscriptionEvents.png │ ├── background_tasks.ipynb │ ├── explaining_xt_components.ipynb │ ├── faq.ipynb │ ├── imgs │ │ └── gh-oauth.png │ ├── minidataapi.ipynb │ ├── oauth.ipynb │ ├── refund.png │ ├── routes.ipynb │ ├── stripe_otp.py │ └── websockets.ipynb ├── favicon.ico ├── fix-commonmark.html ├── fonts │ ├── Geist-Bold.woff │ ├── Geist-Bold.woff2 │ ├── Geist-Regular.woff │ ├── Geist-Regular.woff2 │ ├── GeistMono-Bold.woff │ ├── GeistMono-Bold.woff2 │ ├── GeistMono-Regular.woff │ └── GeistMono-Regular.woff2 ├── index.ipynb ├── llms-ctx-full.txt ├── llms-ctx.txt ├── llms.txt ├── logo.svg ├── nbdev.yml ├── og-image.png ├── ref │ ├── best_practice.qmd │ ├── concise_guide.ipynb │ ├── defining_xt_component.ipynb │ ├── handlers.ipynb │ ├── live_reload.ipynb │ └── response_types.ipynb ├── robots.txt ├── styles.css ├── tutorials │ ├── 01_quickdraw.py │ ├── 02_quickdraw.py │ ├── 03_quickdraw.py │ ├── by_example.ipynb │ ├── e2e.ipynb │ ├── hello_world.py │ ├── imgs │ │ └── quickdraw.png │ ├── index.qmd │ ├── jupyter_and_fasthtml.ipynb │ ├── quickstart-web-dev │ │ ├── quickstart-charts.png │ │ ├── quickstart-fasthtml.png │ │ └── quickstart-sakura.png │ └── quickstart_for_web_devs.ipynb └── unpublished │ ├── tutorial_for_web_devs.ipynb │ └── web-dev-tut │ └── random-list-letters.png ├── pyproject.toml ├── settings.ini ├── setup.py ├── tests └── test_toaster.py └── tools ├── mk_pyi.py └── update.sh /.codespellrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/fasthtml/HEAD/.codespellrc -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/fasthtml/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/fasthtml/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/fasthtml/HEAD/.github/ISSUE_TEMPLATE/documentation.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/fasthtml/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/fasthtml/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/deploy.yaml.off: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/fasthtml/HEAD/.github/workflows/deploy.yaml.off -------------------------------------------------------------------------------- /.github/workflows/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/fasthtml/HEAD/.github/workflows/test.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/fasthtml/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/fasthtml/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/fasthtml/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/fasthtml/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/fasthtml/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/fasthtml/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/fasthtml/HEAD/README.md -------------------------------------------------------------------------------- /demo/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/fasthtml/HEAD/demo/favicon.ico -------------------------------------------------------------------------------- /demo/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/fasthtml/HEAD/demo/main.py -------------------------------------------------------------------------------- /demo/requirements.txt: -------------------------------------------------------------------------------- 1 | python-fasthtml -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/fasthtml/HEAD/docs/index.html -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/fasthtml/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/adv_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/fasthtml/HEAD/examples/adv_app.py -------------------------------------------------------------------------------- /examples/adv_app_strip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/fasthtml/HEAD/examples/adv_app_strip.py -------------------------------------------------------------------------------- /examples/basic_ws.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/fasthtml/HEAD/examples/basic_ws.py -------------------------------------------------------------------------------- /examples/chat_ws.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/fasthtml/HEAD/examples/chat_ws.py -------------------------------------------------------------------------------- /examples/example.js: -------------------------------------------------------------------------------- 1 | console.log(1) 2 | -------------------------------------------------------------------------------- /examples/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/fasthtml/HEAD/examples/favicon.ico -------------------------------------------------------------------------------- /examples/minimal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/fasthtml/HEAD/examples/minimal.py -------------------------------------------------------------------------------- /examples/pep8_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/fasthtml/HEAD/examples/pep8_app.py -------------------------------------------------------------------------------- /examples/picovars.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/fasthtml/HEAD/examples/picovars.css -------------------------------------------------------------------------------- /examples/todos1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/fasthtml/HEAD/examples/todos1.py -------------------------------------------------------------------------------- /examples/todos2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/fasthtml/HEAD/examples/todos2.py -------------------------------------------------------------------------------- /examples/todos3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/fasthtml/HEAD/examples/todos3.py -------------------------------------------------------------------------------- /examples/todos4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/fasthtml/HEAD/examples/todos4.py -------------------------------------------------------------------------------- /examples/user_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/fasthtml/HEAD/examples/user_app.py -------------------------------------------------------------------------------- /fasthtml/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = "0.12.36" 2 | from .core import * 3 | -------------------------------------------------------------------------------- /fasthtml/_modidx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/fasthtml/HEAD/fasthtml/_modidx.py -------------------------------------------------------------------------------- /fasthtml/authmw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/fasthtml/HEAD/fasthtml/authmw.py -------------------------------------------------------------------------------- /fasthtml/basics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/fasthtml/HEAD/fasthtml/basics.py -------------------------------------------------------------------------------- /fasthtml/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/fasthtml/HEAD/fasthtml/cli.py -------------------------------------------------------------------------------- /fasthtml/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/fasthtml/HEAD/fasthtml/common.py -------------------------------------------------------------------------------- /fasthtml/components.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/fasthtml/HEAD/fasthtml/components.py -------------------------------------------------------------------------------- /fasthtml/components.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/fasthtml/HEAD/fasthtml/components.pyi -------------------------------------------------------------------------------- /fasthtml/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/fasthtml/HEAD/fasthtml/core.py -------------------------------------------------------------------------------- /fasthtml/core.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/fasthtml/HEAD/fasthtml/core.pyi -------------------------------------------------------------------------------- /fasthtml/fastapp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/fasthtml/HEAD/fasthtml/fastapp.py -------------------------------------------------------------------------------- /fasthtml/ft.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/fasthtml/HEAD/fasthtml/ft.py -------------------------------------------------------------------------------- /fasthtml/js.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/fasthtml/HEAD/fasthtml/js.py -------------------------------------------------------------------------------- /fasthtml/jupyter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/fasthtml/HEAD/fasthtml/jupyter.py -------------------------------------------------------------------------------- /fasthtml/katex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/fasthtml/HEAD/fasthtml/katex.js -------------------------------------------------------------------------------- /fasthtml/live_reload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/fasthtml/HEAD/fasthtml/live_reload.py -------------------------------------------------------------------------------- /fasthtml/oauth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/fasthtml/HEAD/fasthtml/oauth.py -------------------------------------------------------------------------------- /fasthtml/pico.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/fasthtml/HEAD/fasthtml/pico.py -------------------------------------------------------------------------------- /fasthtml/starlette.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/fasthtml/HEAD/fasthtml/starlette.py -------------------------------------------------------------------------------- /fasthtml/svg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/fasthtml/HEAD/fasthtml/svg.py -------------------------------------------------------------------------------- /fasthtml/toaster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/fasthtml/HEAD/fasthtml/toaster.py -------------------------------------------------------------------------------- /fasthtml/xtend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/fasthtml/HEAD/fasthtml/xtend.py -------------------------------------------------------------------------------- /fasthtml/xtend.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/fasthtml/HEAD/fasthtml/xtend.pyi -------------------------------------------------------------------------------- /mds.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/fasthtml/HEAD/mds.zip -------------------------------------------------------------------------------- /nbs/.gitignore: -------------------------------------------------------------------------------- 1 | /.quarto/ 2 | -------------------------------------------------------------------------------- /nbs/_quarto.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/fasthtml/HEAD/nbs/_quarto.yml -------------------------------------------------------------------------------- /nbs/api/00_core.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/fasthtml/HEAD/nbs/api/00_core.ipynb -------------------------------------------------------------------------------- /nbs/api/01_components.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/fasthtml/HEAD/nbs/api/01_components.ipynb -------------------------------------------------------------------------------- /nbs/api/02_xtend.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/fasthtml/HEAD/nbs/api/02_xtend.ipynb -------------------------------------------------------------------------------- /nbs/api/03_js.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/fasthtml/HEAD/nbs/api/03_js.ipynb -------------------------------------------------------------------------------- /nbs/api/04_pico.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/fasthtml/HEAD/nbs/api/04_pico.ipynb -------------------------------------------------------------------------------- /nbs/api/05_svg.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/fasthtml/HEAD/nbs/api/05_svg.ipynb -------------------------------------------------------------------------------- /nbs/api/06_jupyter.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/fasthtml/HEAD/nbs/api/06_jupyter.ipynb -------------------------------------------------------------------------------- /nbs/api/08_oauth.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/fasthtml/HEAD/nbs/api/08_oauth.ipynb -------------------------------------------------------------------------------- /nbs/api/09_cli.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/fasthtml/HEAD/nbs/api/09_cli.ipynb -------------------------------------------------------------------------------- /nbs/api/README.txt: -------------------------------------------------------------------------------- 1 | These are the source notebooks for FastHTML. 2 | 3 | -------------------------------------------------------------------------------- /nbs/apilist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/fasthtml/HEAD/nbs/apilist.txt -------------------------------------------------------------------------------- /nbs/custom.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/fasthtml/HEAD/nbs/custom.scss -------------------------------------------------------------------------------- /nbs/explains/CreateWebhook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/fasthtml/HEAD/nbs/explains/CreateWebhook.png -------------------------------------------------------------------------------- /nbs/explains/CreateWebhook2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/fasthtml/HEAD/nbs/explains/CreateWebhook2.png -------------------------------------------------------------------------------- /nbs/explains/Stripe.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/fasthtml/HEAD/nbs/explains/Stripe.ipynb -------------------------------------------------------------------------------- /nbs/explains/StripeDashboard_API_Key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/fasthtml/HEAD/nbs/explains/StripeDashboard_API_Key.png -------------------------------------------------------------------------------- /nbs/explains/StripePaymentPage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/fasthtml/HEAD/nbs/explains/StripePaymentPage.jpg -------------------------------------------------------------------------------- /nbs/explains/SubscriptionEvents.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/fasthtml/HEAD/nbs/explains/SubscriptionEvents.png -------------------------------------------------------------------------------- /nbs/explains/background_tasks.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/fasthtml/HEAD/nbs/explains/background_tasks.ipynb -------------------------------------------------------------------------------- /nbs/explains/explaining_xt_components.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/fasthtml/HEAD/nbs/explains/explaining_xt_components.ipynb -------------------------------------------------------------------------------- /nbs/explains/faq.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/fasthtml/HEAD/nbs/explains/faq.ipynb -------------------------------------------------------------------------------- /nbs/explains/imgs/gh-oauth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/fasthtml/HEAD/nbs/explains/imgs/gh-oauth.png -------------------------------------------------------------------------------- /nbs/explains/minidataapi.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/fasthtml/HEAD/nbs/explains/minidataapi.ipynb -------------------------------------------------------------------------------- /nbs/explains/oauth.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/fasthtml/HEAD/nbs/explains/oauth.ipynb -------------------------------------------------------------------------------- /nbs/explains/refund.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/fasthtml/HEAD/nbs/explains/refund.png -------------------------------------------------------------------------------- /nbs/explains/routes.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/fasthtml/HEAD/nbs/explains/routes.ipynb -------------------------------------------------------------------------------- /nbs/explains/stripe_otp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/fasthtml/HEAD/nbs/explains/stripe_otp.py -------------------------------------------------------------------------------- /nbs/explains/websockets.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/fasthtml/HEAD/nbs/explains/websockets.ipynb -------------------------------------------------------------------------------- /nbs/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/fasthtml/HEAD/nbs/favicon.ico -------------------------------------------------------------------------------- /nbs/fix-commonmark.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/fasthtml/HEAD/nbs/fix-commonmark.html -------------------------------------------------------------------------------- /nbs/fonts/Geist-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/fasthtml/HEAD/nbs/fonts/Geist-Bold.woff -------------------------------------------------------------------------------- /nbs/fonts/Geist-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/fasthtml/HEAD/nbs/fonts/Geist-Bold.woff2 -------------------------------------------------------------------------------- /nbs/fonts/Geist-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/fasthtml/HEAD/nbs/fonts/Geist-Regular.woff -------------------------------------------------------------------------------- /nbs/fonts/Geist-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/fasthtml/HEAD/nbs/fonts/Geist-Regular.woff2 -------------------------------------------------------------------------------- /nbs/fonts/GeistMono-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/fasthtml/HEAD/nbs/fonts/GeistMono-Bold.woff -------------------------------------------------------------------------------- /nbs/fonts/GeistMono-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/fasthtml/HEAD/nbs/fonts/GeistMono-Bold.woff2 -------------------------------------------------------------------------------- /nbs/fonts/GeistMono-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/fasthtml/HEAD/nbs/fonts/GeistMono-Regular.woff -------------------------------------------------------------------------------- /nbs/fonts/GeistMono-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/fasthtml/HEAD/nbs/fonts/GeistMono-Regular.woff2 -------------------------------------------------------------------------------- /nbs/index.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/fasthtml/HEAD/nbs/index.ipynb -------------------------------------------------------------------------------- /nbs/llms-ctx-full.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/fasthtml/HEAD/nbs/llms-ctx-full.txt -------------------------------------------------------------------------------- /nbs/llms-ctx.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/fasthtml/HEAD/nbs/llms-ctx.txt -------------------------------------------------------------------------------- /nbs/llms.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/fasthtml/HEAD/nbs/llms.txt -------------------------------------------------------------------------------- /nbs/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/fasthtml/HEAD/nbs/logo.svg -------------------------------------------------------------------------------- /nbs/nbdev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/fasthtml/HEAD/nbs/nbdev.yml -------------------------------------------------------------------------------- /nbs/og-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/fasthtml/HEAD/nbs/og-image.png -------------------------------------------------------------------------------- /nbs/ref/best_practice.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/fasthtml/HEAD/nbs/ref/best_practice.qmd -------------------------------------------------------------------------------- /nbs/ref/concise_guide.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/fasthtml/HEAD/nbs/ref/concise_guide.ipynb -------------------------------------------------------------------------------- /nbs/ref/defining_xt_component.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/fasthtml/HEAD/nbs/ref/defining_xt_component.ipynb -------------------------------------------------------------------------------- /nbs/ref/handlers.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/fasthtml/HEAD/nbs/ref/handlers.ipynb -------------------------------------------------------------------------------- /nbs/ref/live_reload.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/fasthtml/HEAD/nbs/ref/live_reload.ipynb -------------------------------------------------------------------------------- /nbs/ref/response_types.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/fasthtml/HEAD/nbs/ref/response_types.ipynb -------------------------------------------------------------------------------- /nbs/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/fasthtml/HEAD/nbs/robots.txt -------------------------------------------------------------------------------- /nbs/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/fasthtml/HEAD/nbs/styles.css -------------------------------------------------------------------------------- /nbs/tutorials/01_quickdraw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/fasthtml/HEAD/nbs/tutorials/01_quickdraw.py -------------------------------------------------------------------------------- /nbs/tutorials/02_quickdraw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/fasthtml/HEAD/nbs/tutorials/02_quickdraw.py -------------------------------------------------------------------------------- /nbs/tutorials/03_quickdraw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/fasthtml/HEAD/nbs/tutorials/03_quickdraw.py -------------------------------------------------------------------------------- /nbs/tutorials/by_example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/fasthtml/HEAD/nbs/tutorials/by_example.ipynb -------------------------------------------------------------------------------- /nbs/tutorials/e2e.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/fasthtml/HEAD/nbs/tutorials/e2e.ipynb -------------------------------------------------------------------------------- /nbs/tutorials/hello_world.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/fasthtml/HEAD/nbs/tutorials/hello_world.py -------------------------------------------------------------------------------- /nbs/tutorials/imgs/quickdraw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/fasthtml/HEAD/nbs/tutorials/imgs/quickdraw.png -------------------------------------------------------------------------------- /nbs/tutorials/index.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/fasthtml/HEAD/nbs/tutorials/index.qmd -------------------------------------------------------------------------------- /nbs/tutorials/jupyter_and_fasthtml.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/fasthtml/HEAD/nbs/tutorials/jupyter_and_fasthtml.ipynb -------------------------------------------------------------------------------- /nbs/tutorials/quickstart-web-dev/quickstart-charts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/fasthtml/HEAD/nbs/tutorials/quickstart-web-dev/quickstart-charts.png -------------------------------------------------------------------------------- /nbs/tutorials/quickstart-web-dev/quickstart-fasthtml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/fasthtml/HEAD/nbs/tutorials/quickstart-web-dev/quickstart-fasthtml.png -------------------------------------------------------------------------------- /nbs/tutorials/quickstart-web-dev/quickstart-sakura.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/fasthtml/HEAD/nbs/tutorials/quickstart-web-dev/quickstart-sakura.png -------------------------------------------------------------------------------- /nbs/tutorials/quickstart_for_web_devs.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/fasthtml/HEAD/nbs/tutorials/quickstart_for_web_devs.ipynb -------------------------------------------------------------------------------- /nbs/unpublished/tutorial_for_web_devs.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/fasthtml/HEAD/nbs/unpublished/tutorial_for_web_devs.ipynb -------------------------------------------------------------------------------- /nbs/unpublished/web-dev-tut/random-list-letters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/fasthtml/HEAD/nbs/unpublished/web-dev-tut/random-list-letters.png -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/fasthtml/HEAD/pyproject.toml -------------------------------------------------------------------------------- /settings.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/fasthtml/HEAD/settings.ini -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/fasthtml/HEAD/setup.py -------------------------------------------------------------------------------- /tests/test_toaster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/fasthtml/HEAD/tests/test_toaster.py -------------------------------------------------------------------------------- /tools/mk_pyi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/fasthtml/HEAD/tools/mk_pyi.py -------------------------------------------------------------------------------- /tools/update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/fasthtml/HEAD/tools/update.sh --------------------------------------------------------------------------------