There are a lot of Python to web app frameworks going around these days but I wanted something that was a little more lightweight that just generates HTML pages and can be embedded in Flask or other Python web servers incrementally.
PyVibe uses Python components to construct a page with styling that you can use in Flask, in a static site, or even in Pyodide.
<script src="https://cdn.tailwindcss.com"></script>
in the source of the homepage. Just FYI the tailwind people say that's just for dev mode and never deploy that to prod. Instead you gotta run something like:
npx tailwindcss -o ../assets/css/tail.min.css --minify
and then replace the script with:
<link rel="stylesheet" type="text/css" href="/assets/css/tail.min.css">
"a script referred to as the Tailwind Play CDN. This script is only to be used for learning and experimenting, never for a live site."
from https://www.codeinwp.com/blog/tailwind-css-tutorial/