Last active
November 12, 2023 05:07
-
-
Save oleksis/2d2413e4c14f7163adba86c0973a0b0e to your computer and use it in GitHub Desktop.
Hello Word PyScript
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Links