Die Domain knoth-web.de wir zur Zeit nicht verwendet
from pyscript import Element
import pyscript
from time import strftime
import asyncio
async def func():
while (True):
await asyncio.sleep(1)
Element("calendar").write(strftime("%d.%m.%Y"))
Element("clock").write(strftime("%H:%M:%S"))
#Element("clock").write("test")
pyscript.run_until_complete(func())