mirror of
https://github.com/pyscript/pyscript.git
synced 2025-12-19 18:27:29 -05:00
22 lines
561 B
HTML
22 lines
561 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>
|
|
import asyncio
|
|
print('py-script sleep')
|
|
await asyncio.sleep(1)
|
|
print('py-script done')
|
|
</py-script>
|
|
<script type="py">
|
|
import asyncio
|
|
print('script-py sleep')
|
|
await asyncio.sleep(1)
|
|
print('script-py done')
|
|
</script>
|
|
</body>
|
|
</html>
|