We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 200f396 commit d5dad6dCopy full SHA for d5dad6d
docs/_ext/playground.py
@@ -22,7 +22,6 @@ class WasmPlayground(Directive):
22
def run(self):
23
# Generate unique IDs for the HTML elements
24
id = uuid4().hex
25
- print(id)
26
env = Environment(loader=FileSystemLoader(Path(__file__).parent))
27
template = env.get_template("playground_template.html")
28
rendered = template.render(id=id)
docs/_ext/playground_template.html
@@ -36,7 +36,6 @@ <h2>🐍 Pyodide + SQLSpec Runner</h2>
36
await pyodide.loadPackage("micropip");
37
const micropip = pyodide.pyimport("micropip");
38
39
-
40
output.textContent += "Installing sqlspec (this may take ~30s)...\n";
41
await micropip.install("sqlspec[aiosqlite]");
42
await micropip.install("sqlite3");
0 commit comments