mirror of
https://github.com/pyscript/pyscript.git
synced 2025-12-21 11:15:36 -05:00
15 lines
303 B
HTML
15 lines
303 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<script type="module" src="../core.js"></script>
|
|
</head>
|
|
<body>
|
|
<py-script async>
|
|
import asyncio
|
|
print('foo')
|
|
await asyncio.sleep(1)
|
|
print('bar')
|
|
</py-script>
|
|
</body>
|
|
</html>
|