plugins = [
"https://pyscript.net/latest/plugins/python/py_tutor.py"
]
Hello world!
This is the current date and time, as computed by Python:
from pyscript import display
from datetime import datetime
now = datetime.now()
display(now.strftime("%m/%d/%Y, %H:%M:%S"))