I tried to create a simple today widget for the latest Pythonista Beta that just prints the time. The widget logo shows on the screen, but nothing else happens.
'''testing today widget
'''
import datetime as dt
print('Python time is %s'%dt.datetime.now())
What's needed to get this working?
Georg
