summaryrefslogtreecommitdiff
path: root/inbox_for_todoist.widget/todoistinbox.py
blob: c35081210ac230c6a672afc0bac05d859a123d76 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# -*-coding:utf-8 -*
def main(token='___YOUR TODOIST TOKEN HERE:___'):
    from todoist.api import TodoistAPI
    api = TodoistAPI(token)
    api.sync()  # initial sync
    rank = 0
    for i in api.state['items']:  #going through all the items in todoist
        if i['project_id'] == 170911352:  # if an item is in the inbox
            if i['checked'] == 0:  # if the item is incomplete
                rank += 1
                print("<b>", rank, '- </b>', i['content'], "<p class='mini'> </p>")  # print name and id
if __name__ == '__main__':
    main()