mirror of
https://github.com/pyscript/pyscript.git
synced 2025-12-22 19:53:00 -05:00
* Deprecate pyscript output attribute * Update pyscriptjs/src/components/pyscript.ts Co-authored-by: Antonio Cuni <anto.cuni@gmail.com> Co-authored-by: Antonio Cuni <anto.cuni@gmail.com>
133 lines
4.2 KiB
HTML
133 lines
4.2 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>
|
|
<link rel="stylesheet" href="./assets/css/examples.css" />
|
|
<link rel="stylesheet" href="./assets/prism/prism.css" />
|
|
<script defer src="./assets/prism/prism.js"></script>
|
|
</head>
|
|
|
|
<body>
|
|
<nav class="navbar" style="background-color: #000000;">
|
|
<div class="app-header">
|
|
<a href="/">
|
|
<img src="./logo.png" class="logo">
|
|
</a>
|
|
<a class="title" href="" style="color: #f0ab3c;">Simple Clock</a>
|
|
</div>
|
|
</nav>
|
|
<section class="pyscript">
|
|
<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>
|
|
[[fetch]]
|
|
files = ["./utils.py"]
|
|
</py-config>
|
|
<py-script>
|
|
import utils
|
|
display(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()
|
|
|
|
pyscript.run_until_complete(foo())
|
|
</py-script>
|
|
</section>
|
|
<section class="code">
|
|
<div id="view-code-button" role="button" aria-pressed="false" tabindex="0">View Code</div>
|
|
<div id="code-section" class="code-section-hidden">
|
|
<p>index.html</p>
|
|
<pre class="prism-code language-html">
|
|
<code class="language-html">
|
|
<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>
|
|
[[fetch]]
|
|
files = ["./utils.py"]
|
|
</py-config>
|
|
<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()
|
|
|
|
pyscript.run_until_complete(foo())
|
|
</py-script>
|
|
</code>
|
|
</pre>
|
|
<p>utils.py</p>
|
|
<pre class="prism-code language-python">
|
|
<code class="language-python">
|
|
from datetime import datetime as dt
|
|
|
|
def format_date(dt_, fmt="%m/%d/%Y, %H:%M:%S"):
|
|
return f"{dt_:{fmt}}"
|
|
|
|
def now(fmt="%m/%d/%Y, %H:%M:%S"):
|
|
return format_date(dt.now(), fmt)
|
|
|
|
def remove_class(element, class_name):
|
|
element.element.classList.remove(class_name)
|
|
|
|
def add_class(element, class_name):
|
|
element.element.classList.add(class_name)
|
|
</code>
|
|
</pre>
|
|
</div>
|
|
</section>
|
|
</body>
|
|
<script>
|
|
const viewCodeButton = document.getElementById("view-code-button");
|
|
const codeSection = document.getElementById("code-section");
|
|
const handleClick = () => {
|
|
if (codeSection.classList.contains("code-section-hidden")) {
|
|
codeSection.classList.remove("code-section-hidden");
|
|
codeSection.classList.add("code-section-visible");
|
|
} else {
|
|
codeSection.classList.remove("code-section-visible");
|
|
codeSection.classList.add("code-section-hidden");
|
|
}
|
|
}
|
|
viewCodeButton.addEventListener("click", handleClick)
|
|
viewCodeButton.addEventListener("keydown", (e) => {
|
|
if (e.key === " " || e.key === "Enter" || e.key === "Spacebar") {
|
|
handleClick();
|
|
}
|
|
})
|
|
</script>
|
|
</html>
|