Skip to content

Instantly share code, notes, and snippets.

@oleksis
Last active November 12, 2023 05:07
Show Gist options
  • Save oleksis/2d2413e4c14f7163adba86c0973a0b0e to your computer and use it in GitHub Desktop.
Save oleksis/2d2413e4c14f7163adba86c0973a0b0e to your computer and use it in GitHub Desktop.
Hello Word PyScript
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Hello World PyScript</title>
<script type="module" src="https://pyscript.net/releases/2023.11.1/core.js"></script>
</head>
<body>
<script type="py">
from pyscript import display
display("Hello World PyScript!")
</script>
</body>
</html>
@oleksis
Copy link
Author

oleksis commented Nov 12, 2023

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment