-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpy-events.html
More file actions
31 lines (29 loc) · 1.03 KB
/
py-events.html
File metadata and controls
31 lines (29 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<!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="../dist/index.js"></script>
</head>
<body>
<script type="pyodide" src="./py-events.py" config="./py-events.toml"></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>
<script type="pyodide" src="./py-events-worker.py" worker></script>
<script type="micropython" src="./py-events-worker.py" worker></script>
</body>
</html>