3 from rtm
import createRTM
8 rspTasks
= rtm
.tasks
.getList(filter='dueWithin:"1 week of today"')
9 tasks
= [t
.name
for t
in rspTasks
.tasks
.list.taskseries
]
12 root
.wm_attributes('-topmost', 1)
13 root
.wm_attributes('-alpha', 0.5)
14 l
= Label(text
='\n'.join(tasks
))
18 def test(apiKey
, secret
, token
=None):
19 rtm
= createRTM(apiKey
, secret
, token
)