index.html
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
<!doctype html> <html> <head> <link rel="stylesheet" href="https://pyscript.net/releases/2024.1.1/core.css"> <script type="module" src="https://pyscript.net/releases/2024.1.1/core.js"></script> <title>PyScript Hello World</title> </head> <body> <section class="pyscript"> <script type="py"> from pyscript import display from datetime import datetime now = datetime.now() display("hello world") display(now.strftime("%m/%d/%Y, %H:%M:%S")) </script> </section> </body> </html> |