mirror of
https://github.com/pyscript/pyscript.git
synced 2026-02-12 13:00:31 -05:00
53 lines
1.3 KiB
HTML
53 lines
1.3 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width,initial-scale=1" />
|
|
|
|
<title>Simple Clock Demo</title>
|
|
|
|
<link rel="icon" type="image/png" href="favicon.png" />
|
|
<link rel="stylesheet" href="https://pyscript.net/latest/pyscript.css" />
|
|
|
|
<script defer src="https://pyscript.net/latest/pyscript.js"></script>
|
|
</head>
|
|
|
|
<body>
|
|
<div class="font-mono">start time: <label id="outputDiv"></label></div>
|
|
<div id="outputDiv2" class="font-mono"></div>
|
|
<div id="outputDiv3" class="font-mono"></div>
|
|
<py-config>
|
|
paths = [
|
|
"./utils.py"
|
|
]
|
|
</py-config>
|
|
<py-script output="outputDiv">
|
|
# demonstrates how use the global PyScript pyscript_loader
|
|
# to send operation log messages to it
|
|
import utils
|
|
utils.now()
|
|
</py-script>
|
|
|
|
<py-script>
|
|
from utils import now
|
|
import asyncio
|
|
|
|
async def foo():
|
|
while True:
|
|
await asyncio.sleep(1)
|
|
output = now()
|
|
Element("outputDiv2").write(output)
|
|
|
|
out3 = Element("outputDiv3")
|
|
if output[-1] in ["0", "4", "8"]:
|
|
out3.write("It's espresso time!")
|
|
else:
|
|
out3.clear()
|
|
|
|
# close the global PyScript pyscript_loader
|
|
pyscript_loader.close()
|
|
pyscript.run_until_complete(foo())
|
|
</py-script>
|
|
</body>
|
|
</html>
|