mirror of
https://github.com/pyscript/pyscript.git
synced 2026-02-12 13:00:31 -05:00
22 lines
541 B
HTML
22 lines
541 B
HTML
<html>
|
|
<head>
|
|
<title>Antigravity</title>
|
|
<meta charset="utf-8">
|
|
<link rel="icon" type="image/x-icon" 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>
|
|
<py-config>
|
|
paths = [
|
|
"./antigravity.py"
|
|
]
|
|
</py-config>
|
|
<b>Based on xkcd: antigravity https://xkcd.com/353/.</b>
|
|
<py-script>
|
|
import antigravity
|
|
antigravity.fly()
|
|
</py-script>
|
|
</body>
|
|
</html>
|