mirror of
https://github.com/pyscript/pyscript.git
synced 2025-12-20 10:47:35 -05:00
16 lines
364 B
HTML
16 lines
364 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<link rel="stylesheet" href="../dist/core.css">
|
|
<script type="module" src="../dist/core.js"></script>
|
|
</head>
|
|
<body>
|
|
<py-script async>
|
|
import asyncio
|
|
print('foo')
|
|
await asyncio.sleep(1)
|
|
print('bar')
|
|
</py-script>
|
|
</body>
|
|
</html>
|