mirror of
https://github.com/pyscript/pyscript.git
synced 2025-12-19 18:27:29 -05:00
36 lines
1.0 KiB
HTML
36 lines
1.0 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width,initial-scale=1" />
|
|
|
|
<title>Custom REPL Example</title>
|
|
|
|
<link rel="icon" type="image/png" href="favicon.png" />
|
|
<link rel="stylesheet" href="https://pyscript.net/latest/pyscript.css" />
|
|
<link rel="stylesheet" href="repl.css" />
|
|
|
|
<script defer src="https://pyscript.net/latest/pyscript.js"></script>
|
|
</head>
|
|
|
|
<body>
|
|
<h1 class="font-semibold text-2xl ml-5">Custom REPL</h1>
|
|
<py-config>
|
|
packages = [
|
|
"bokeh",
|
|
"numpy"
|
|
]
|
|
paths = [
|
|
"./utils.py",
|
|
"./antigravity.py"
|
|
]
|
|
</py-config>
|
|
<py-box widths="2/3;1/3">
|
|
<py-repl id="my-repl" auto-generate="true" std-out="output" std-err="err-div"> </py-repl>
|
|
<div id="output" class="p-4"></div>
|
|
</py-box>
|
|
<footer id="err-div" class="bg-red-700 text-white text-center border-t-4 border-green-500 fixed inset-x-0 bottom-0 p-4 hidden">
|
|
</footer>
|
|
</body>
|
|
</html>
|