mirror of
https://github.com/pyscript/pyscript.git
synced 2025-12-21 03:05:38 -05:00
29 lines
865 B
HTML
29 lines
865 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width,initial-scale=1.0" />
|
|
<title>python events</title>
|
|
<link rel="stylesheet" href="style.css" />
|
|
<script defer src="./counter.js"></script>
|
|
<script type="module" src="../core.js"></script>
|
|
</head>
|
|
<body>
|
|
<script type="pyodide" src="./py-events.py"></script>
|
|
<button
|
|
pyodide-pointerdown="print_version"
|
|
pyodide-click="printer.version"
|
|
>
|
|
pyodide version
|
|
</button>
|
|
|
|
<script type="micropython" src="./py-events.py"></script>
|
|
<button
|
|
micropython-pointerdown="print_version"
|
|
micropython-click="printer.version"
|
|
>
|
|
micropython version
|
|
</button>
|
|
</body>
|
|
</html>
|