This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from fasthtml.common import * | |
app,rt = fast_app(live=True) | |
@rt("/") | |
def get(): | |
menu_css = Style(""" | |
.context-menu { | |
display: none; | |
position: absolute; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from fasthtml.common import * | |
from datetime import datetime | |
def render(todo): | |
show = AX(todo.title, f'/todos/{todo.id}', 'current-todo') | |
edit = AX('edit', f'/edit/{todo.id}' , 'current-todo') | |
dt = ' (done)' if todo.done else '' | |
return Li(show, dt, ' | ', edit, id=f'todo-{todo.id}') | |
app,rt,todos,Todo = fast_app('data/todos.db', render, id=int, title=str, done=bool, pk='id', live=True) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import sqlite3 | |
# Create the SQLite database | |
def create_sql_questions_database(): | |
# Connect to SQLite database (creates it if it doesn't exist) | |
conn = sqlite3.connect('sql_questions.db') | |
cursor = conn.cursor() | |
# Create table with auto-incrementing ID and question field | |
cursor.execute(''' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"tailwindCSS.includeLanguages": { | |
"python": "html", | |
}, | |
"tailwindCSS.experimental.classRegex": [ | |
"\\b[a-zA-Z_]+\\s*=\\s*['\"]([^'\"]*)['\"]", | |
"\"[^\"]+\"\\s*:\\s*\"([^\"]*)\"", | |
"'[^']+'\\s*:\\s*'([^']*)'" | |
] | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from fasthtml.common import * | |
import subprocess | |
def serve_dev( | |
app='app', | |
host='0.0.0.0', | |
port=None, | |
reload=True, | |
reload_includes=None, | |
reload_excludes=None, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<project title="FastHTML" summary='FastHTML is a python library which brings together Starlette, Uvicorn, HTMX, and fastcore's `FT` "FastTags" into a library for creating server-rendered hypermedia applications. The `FastHTML` class itself inherits from `Starlette`, and adds decorator-based routing with many additions, Beforeware, automatic `FT` to HTML rendering, and much more.'>Things to remember when writing FastHTML apps: | |
- Although parts of its API are inspired by FastAPI, it is *not* compatible with FastAPI syntax and is not targeted at creating API services | |
- FastHTML includes support for Pico CSS and the fastlite sqlite library, although using both are optional; sqlalchemy can be used directly or via the fastsql library, and any CSS framework can be used. Support for the Surreal and css-scope-inline libraries are also included, but both are optional | |
- FastHTML is compatible with JS-native web components and any vanilla JS library, but not with React, Vue, or Svelte | |
- Use `serve()` for running uvi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const TYPES = { | |
FETCH_FROM_API : "FETCH_FROM_API", | |
HYDRATE_PRODUCT: "HYDRATE_PRODUCT", | |
}; | |
export default TYPES; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* WordPress dependencies | |
*/ | |
import { createReduxStore, register, controls } from '@wordpress/data'; | |
import apiFetch from '@wordpress/api-fetch'; | |
import { addQueryArgs } from '@wordpress/url'; | |
export const STORE_NAME = 'search-filter/settings'; | |
const getUniqueKey = ( args ) => { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { registerPlugin } from "@wordpress/plugins"; | |
import { useState, useEffect, createPortal } from "@wordpress/element"; | |
const SomeEditorPlugin = () => { | |
const [portalContainer, setPortalContainer] = useState(null); | |
useEffect(() => { | |
// Wait for the DOM element to be available | |
const container = document.querySelector("#some-element"); | |
setPortalContainer(container); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Attempting to create site 1 of 10... | |
Site name: 1234-test-3B9gNalUoA | |
Sites created: Promise { <pending> } | |
New site created: { | |
status: true, | |
message: 'Site installation work in progress, Wait for installation.', | |
data: { | |
message: 'Site installation work in progress, Wait for installation.', | |
task_id: 'b037e201ddc9', | |
status: 1, |
NewerOlder