Spaces:
Sleeping
Sleeping
File size: 16,871 Bytes
036b3a6 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 |
# fasthtml Module Documentation ## fasthtml.authmw - `class BasicAuthMiddleware` - `def __init__(self, app, cb, skip)` - `def __call__(self, scope, receive, send)` - `def authenticate(self, conn)` ## fasthtml.cli - `@call_parse def railway_link()` Link the current directory to the current project's Railway service - `@call_parse def railway_deploy(name, mount)` Deploy a FastHTML app to Railway ## fasthtml.components > `ft_html` and `ft_hx` functions to add some conveniences to `ft`, along with a full set of basic HTML components, and functions to work with forms and `FT` conversion - `def File(fname)` Use the unescaped text in file `fname` directly - `def show(ft, *rest)` Renders FT Components into HTML within a Jupyter notebook. - `def fill_form(form, obj)` Fills named items in `form` using attributes in `obj` - `def fill_dataclass(src, dest)` Modifies dataclass in-place and returns it - `def find_inputs(e, tags, **kw)` Recursively find all elements in `e` with `tags` and attrs matching `kw` - `def html2ft(html, attr1st)` Convert HTML to an `ft` expression - `def sse_message(elm, event)` Convert element `elm` into a format suitable for SSE streaming ## fasthtml.core > The `FastHTML` subclass of `Starlette`, along with the `RouterX` and `RouteX` classes it automatically uses. - `def parsed_date(s)` Convert `s` to a datetime - `def snake2hyphens(s)` Convert `s` from snake case to hyphenated and capitalised - `@dataclass class HtmxHeaders` - `def __bool__(self)` - `def __init__(self, boosted, current_url, history_restore_request, prompt, request, target, trigger_name, trigger)` - `@dataclass class HttpHeader` - `def __init__(self, k, v)` - `@use_kwargs_dict(**htmx_resps) def HtmxResponseHeaders(**kwargs)` HTMX response headers - `def form2dict(form)` Convert starlette form data to a dict - `def parse_form(req)` Starlette errors on empty multipart forms, so this checks for that situation - `class JSONResponse` Same as starlette's version, but auto-stringifies non serializable types - `def render(self, content)` - `def flat_xt(lst)` Flatten lists - `class Beforeware` - `def __init__(self, f, skip)` - `def EventStream(s)` Create a text/event-stream response from `s` - `def flat_tuple(o)` Flatten lists - `def noop_body(c, req)` Default Body wrap function which just returns the content - `def respond(req, heads, bdy)` Default FT response creation function - `class Redirect` Use HTMX or Starlette RedirectResponse as required to redirect to `loc` - `def __init__(self, loc)` - `def __response__(self, req)` - `def qp(p, **kw)` Add parameters kw to path p - `def def_hdrs(htmx, surreal)` Default headers for a FastHTML app - `class FastHTML` - `def __init__(self, debug, routes, middleware, title, exception_handlers, on_startup, on_shutdown, lifespan, hdrs, ftrs, exts, before, after, surreal, htmx, default_hdrs, sess_cls, secret_key, session_cookie, max_age, sess_path, same_site, sess_https_only, sess_domain, key_fname, body_wrap, htmlkw, nb_hdrs, canonical, **bodykw)` - `def add_route(self, route)` - `@patch def ws(self, path, conn, disconn, name, middleware)` Add a websocket route at `path` - `def nested_name(f)` Get name of function `f` using '_' to join nested function names - `@patch def route(self, path, methods, name, include_in_schema, body_wrap)` Add a route at `path` - `def serve(appname, app, host, port, reload, reload_includes, reload_excludes)` Run the app in an async server, with live reload set as the default. - `class Client` A simple httpx ASGI client that doesn't require `async` - `def __init__(self, app, url)` - `class RouteFuncs` - `def __init__(self)` - `def __setattr__(self, name, value)` - `def __getattr__(self, name)` - `def __dir__(self)` - `class APIRouter` Add routes to an app - `def __init__(self, prefix, body_wrap)` - `def __call__(self, path, methods, name, include_in_schema, body_wrap)` Add a route at `path` - `def __getattr__(self, name)` - `def to_app(self, app)` Add routes to `app` - `def ws(self, path, conn, disconn, name, middleware)` Add a websocket route at `path` - `def cookie(key, value, max_age, expires, path, domain, secure, httponly, samesite)` Create a 'set-cookie' `HttpHeader` - `@patch def static_route_exts(self, prefix, static_path, exts)` Add a static route at URL path `prefix` with files from `static_path` and `exts` defined by `reg_re_param()` - `@patch def static_route(self, ext, prefix, static_path)` Add a static route at URL path `prefix` with files from `static_path` and single `ext` (including the '.') - `class MiddlewareBase` - `def __call__(self, scope, receive, send)` - `class FtResponse` Wrap an FT response with any Starlette `Response` - `def __init__(self, content, status_code, headers, cls, media_type, background)` - `def __response__(self, req)` ## fasthtml.fastapp > The `fast_app` convenience wrapper - `def fast_app(db_file, render, hdrs, ftrs, tbls, before, middleware, live, debug, title, routes, exception_handlers, on_startup, on_shutdown, lifespan, default_hdrs, pico, surreal, htmx, exts, canonical, secret_key, key_fname, session_cookie, max_age, sess_path, same_site, sess_https_only, sess_domain, htmlkw, bodykw, reload_attempts, reload_interval, static_path, body_wrap, nb_hdrs, **kwargs)` Create a FastHTML or FastHTMLWithLiveReload app. ## fasthtml.js > Basic external Javascript lib wrappers - `def light_media(css)` Render light media for day mode views - `def dark_media(css)` Render dark media for night mode views - `def MarkdownJS(sel)` Implements browser-based markdown rendering. - `def HighlightJS(sel, langs, light, dark)` Implements browser-based syntax highlighting. Usage example [here](/tutorials/quickstart_for_web_devs.html#code-highlighting). - `def MermaidJS(sel, theme)` Implements browser-based Mermaid diagram rendering. ## fasthtml.jupyter > Use FastHTML in Jupyter notebooks - `def nb_serve(app, log_level, port, host, **kwargs)` Start a Jupyter compatible uvicorn server with ASGI `app` on `port` with `log_level` - `def nb_serve_async(app, log_level, port, host, **kwargs)` Async version of `nb_serve` - `def is_port_free(port, host)` Check if `port` is free on `host` - `def wait_port_free(port, host, max_wait)` Wait for `port` to be free on `host` - `class JupyUvi` Start and stop a Jupyter compatible uvicorn server with ASGI `app` on `port` with `log_level` - `def __init__(self, app, log_level, host, port, start, **kwargs)` - `def start(self)` - `def start_async(self)` - `def stop(self)` - `class JupyUviAsync` Start and stop an async Jupyter compatible uvicorn server with ASGI `app` on `port` with `log_level` - `def __init__(self, app, log_level, host, port, **kwargs)` - `def start(self)` - `def stop(self)` - `def HTMX(path, app, host, port, height, link, iframe)` An iframe which displays the HTMX application in a notebook. ## fasthtml.live_reload - `class FastHTMLWithLiveReload` `FastHTMLWithLiveReload` enables live reloading. This means that any code changes saved on the server will automatically trigger a reload of both the server and browser window. How does it work? - a websocket is created at `/live-reload` - a small js snippet `LIVE_RELOAD_SCRIPT` is injected into each webpage - this snippet connects to the websocket at `/live-reload` and listens for an `onclose` event - when the `onclose` event is detected the browser is reloaded Why do we listen for an `onclose` event? When code changes are saved the server automatically reloads if the --reload flag is set. The server reload kills the websocket connection. The `onclose` event serves as a proxy for "developer has saved some changes". Usage >>> from fasthtml.common import * >>> app = FastHTMLWithLiveReload() Run: serve() - `def __init__(self, *args, **kwargs)` ## fasthtml.oauth > Basic scaffolding for handling OAuth - `class GoogleAppClient` A `WebApplicationClient` for Google oauth2 - `def __init__(self, client_id, client_secret, code, scope, project_id, **kwargs)` - `@classmethod def from_file(cls, fname, code, scope, **kwargs)` - `class GitHubAppClient` A `WebApplicationClient` for GitHub oauth2 - `def __init__(self, client_id, client_secret, code, scope, **kwargs)` - `class HuggingFaceClient` A `WebApplicationClient` for HuggingFace oauth2 - `def __init__(self, client_id, client_secret, code, scope, state, **kwargs)` - `class DiscordAppClient` A `WebApplicationClient` for Discord oauth2 - `def __init__(self, client_id, client_secret, is_user, perms, scope, **kwargs)` - `def login_link(self, redirect_uri, scope, state)` - `def parse_response(self, code, redirect_uri)` - `class Auth0AppClient` A `WebApplicationClient` for Auth0 OAuth2 - `def __init__(self, domain, client_id, client_secret, code, scope, redirect_uri, **kwargs)` - `def login_link(self, req)` - `@patch def login_link(self, redirect_uri, scope, state, **kwargs)` Get a login link for this client - `def redir_url(request, redir_path, scheme)` Get the redir url for the host in `request` - `@patch def parse_response(self, code, redirect_uri)` Get the token from the oauth2 server response - `@patch def get_info(self, token)` Get the info for authenticated user - `@patch def retr_info(self, code, redirect_uri)` Combines `parse_response` and `get_info` - `@patch def retr_id(self, code, redirect_uri)` Call `retr_info` and then return id/subscriber value - `class OAuth` - `def __init__(self, app, cli, skip, redir_path, error_path, logout_path, login_path, https, http_patterns)` - `def redir_login(self, session)` - `def redir_url(self, req)` - `def login_link(self, req, scope, state)` - `def check_invalid(self, req, session, auth)` - `def logout(self, session)` - `def get_auth(self, info, ident, session, state)` - `@patch() def consent_url(self, proj)` Get Google OAuth consent screen URL - `@patch def save(self, fname)` Save credentials to `fname` - `def load_creds(fname)` Load credentials from `fname` - `@patch def creds(self)` Create `Credentials` from the client, refreshing if needed ## fasthtml.pico > Basic components for generating Pico CSS tags - `@delegates(ft_hx, keep=True) def Card(*c, **kwargs)` A PicoCSS Card, implemented as an Article with optional Header and Footer - `@delegates(ft_hx, keep=True) def Group(*c, **kwargs)` A PicoCSS Group, implemented as a Fieldset with role 'group' - `@delegates(ft_hx, keep=True) def Search(*c, **kwargs)` A PicoCSS Search, implemented as a Form with role 'search' - `@delegates(ft_hx, keep=True) def Grid(*c, **kwargs)` A PicoCSS Grid, implemented as child Divs in a Div with class 'grid' - `@delegates(ft_hx, keep=True) def DialogX(*c, **kwargs)` A PicoCSS Dialog, with children inside a Card - `@delegates(ft_hx, keep=True) def Container(*args, **kwargs)` A PicoCSS Container, implemented as a Main with class 'container' ## fasthtml.stripe_otp - `def create_price(app_nm, amt, currency)` Create a product and bind it to a price object. If product already exist just return the price list. - `def archive_price(app_nm)` Archive a price - useful for cleanup if testing. - `class Payment` ## fasthtml.svg > Simple SVG FT elements - `def Svg(*args, **kwargs)` An SVG tag; xmlns is added automatically, and viewBox defaults to height and width if not provided - `@delegates(ft_hx) def ft_svg(tag, *c, **kwargs)` Create a standard `FT` element with some SVG-specific attrs - `@delegates(ft_svg) def Rect(width, height, x, y, fill, stroke, stroke_width, rx, ry, **kwargs)` A standard SVG `rect` element - `@delegates(ft_svg) def Circle(r, cx, cy, fill, stroke, stroke_width, **kwargs)` A standard SVG `circle` element - `@delegates(ft_svg) def Ellipse(rx, ry, cx, cy, fill, stroke, stroke_width, **kwargs)` A standard SVG `ellipse` element - `def transformd(translate, scale, rotate, skewX, skewY, matrix)` Create an SVG `transform` kwarg dict - `@delegates(ft_svg) def Line(x1, y1, x2, y2, stroke, w, stroke_width, **kwargs)` A standard SVG `line` element - `@delegates(ft_svg) def Polyline(*args, **kwargs)` A standard SVG `polyline` element - `@delegates(ft_svg) def Polygon(*args, **kwargs)` A standard SVG `polygon` element - `@delegates(ft_svg) def Text(*args, **kwargs)` A standard SVG `text` element - `class PathFT` - `def M(self, x, y)` Move to. - `def L(self, x, y)` Line to. - `def H(self, x)` Horizontal line to. - `def V(self, y)` Vertical line to. - `def Z(self)` Close path. - `def C(self, x1, y1, x2, y2, x, y)` Cubic Bézier curve. - `def S(self, x2, y2, x, y)` Smooth cubic Bézier curve. - `def Q(self, x1, y1, x, y)` Quadratic Bézier curve. - `def T(self, x, y)` Smooth quadratic Bézier curve. - `def A(self, rx, ry, x_axis_rotation, large_arc_flag, sweep_flag, x, y)` Elliptical Arc. - `def SvgOob(*args, **kwargs)` Wraps an SVG shape as required for an HTMX OOB swap - `def SvgInb(*args, **kwargs)` Wraps an SVG shape as required for an HTMX inband swap ## fasthtml.xtend > Simple extensions to standard HTML components, such as adding sensible defaults - `@delegates(ft_hx, keep=True) def A(*c, **kwargs)` An A tag; `href` defaults to '#' for more concise use with HTMX - `@delegates(ft_hx, keep=True) def AX(txt, hx_get, target_id, hx_swap, href, **kwargs)` An A tag with just one text child, allowing hx_get, target_id, and hx_swap to be positional params - `@delegates(ft_hx, keep=True) def Form(*c, **kwargs)` A Form tag; identical to plain `ft_hx` version except default `enctype='multipart/form-data'` - `@delegates(ft_hx, keep=True) def Hidden(value, id, **kwargs)` An Input of type 'hidden' - `@delegates(ft_hx, keep=True) def CheckboxX(checked, label, value, id, name, **kwargs)` A Checkbox optionally inside a Label, preceded by a `Hidden` with matching name - `@delegates(ft_html, keep=True) def Script(code, **kwargs)` A Script tag that doesn't escape its code - `@delegates(ft_html, keep=True) def Style(*c, **kwargs)` A Style tag that doesn't escape its code - `def double_braces(s)` Convert single braces to double braces if next to special chars or newline - `def undouble_braces(s)` Convert double braces to single braces if next to special chars or newline - `def loose_format(s, **kw)` String format `s` using `kw`, without being strict about braces outside of template params - `def ScriptX(fname, src, nomodule, type, _async, defer, charset, crossorigin, integrity, **kw)` A `script` element with contents read from `fname` - `def replace_css_vars(css, pre, **kwargs)` Replace `var(--)` CSS variables with `kwargs` if name prefix matches `pre` - `def StyleX(fname, **kw)` A `style` element with contents read from `fname` and variables replaced from `kw` - `def Nbsp()` A non-breaking space - `def Surreal(code)` Wrap `code` in `domReadyExecute` and set `m=me()` and `p=me('-')` - `def On(code, event, sel, me)` An async surreal.js script block event handler for `event` on selector `sel,p`, making available parent `p`, event `ev`, and target `e` - `def Prev(code, event)` An async surreal.js script block event handler for `event` on previous sibling, with same vars as `On` - `def Now(code, sel)` An async surreal.js script block on selector `me(sel)` - `def AnyNow(sel, code)` An async surreal.js script block on selector `any(sel)` - `def run_js(js, id, **kw)` Run `js` script, auto-generating `id` based on name of caller if needed, and js-escaping any `kw` params - `def jsd(org, repo, root, path, prov, typ, ver, esm, **kwargs)` jsdelivr `Script` or CSS `Link` tag, or URL - `class Fragment` An empty tag, used as a container - `def __init__(self, *c)` - `@delegates(ft_hx, keep=True) def Titled(title, *args, **kwargs)` An HTML partial containing a `Title`, and `H1`, and any provided children - `def Socials(title, site_name, description, image, url, w, h, twitter_site, creator, card)` OG and Twitter social card headers - `def YouTubeEmbed(video_id, **kwargs)` Embed a YouTube video - `def Favicon(light_icon, dark_icon)` Light and dark favicon headers |