mirror of
https://github.com/pyscript/pyscript.git
synced 2026-02-12 13:00:31 -05:00
33 lines
853 B
HTML
33 lines
853 B
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"
|
|
]
|
|
|
|
[[fetch]]
|
|
files = ["./utils.py", "./antigravity.py"]
|
|
</py-config>
|
|
<div>
|
|
<py-repl id="my-repl" auto-generate="true"> </py-repl>
|
|
<div id="output" class="p-4"></div>
|
|
</div>
|
|
</body>
|
|
</html>
|