Export Wunderlist



  1. Export Wunderlist To Microsoft To Do
  2. Export Wunderlist To Trello
Export Wunderlist
wunderlist-export.py
WunderlistWunderlist

As of Might 6, 2020, Wunderlist will lastly shut its digital doorways to customers. For those who’re a fan of Wunderlist and have been utilizing it for years, it’s time to seize your duties and transfer on, in the event you haven’t already. Right here’s how you can export, electronic mail, or print your to-dos from Wunderlist. Import and Export Tools. You can import and export your data in a variety of formats. It's your to-do list, so you should be able to take it with you.

Wunderlist

Export Wunderlist To Microsoft To Do

# Wunderlist export:
# convert .json to .tab file
input_file='wlist.json'
output_file='wlist.txt'
importjson
# load json into data object
data=json.load(open(input_file))
# create a hash of task lists, keyed by list_id
lists= {}
forlindata['data']['lists']:
lists[l['id']] =l
# collect incompleted tasks
# we only care about:
# - task: the task description
# - list: what list it was on
# - starred: and if it was starred (denote with '*' if so)
tasks= []
fortindata['data']['tasks']:
ifnott['completed']:
task= {}
task['task'] =t['title']
task['list'] =lists[t['list_id']]['title']
task['starred'] ='*'ift['starred'] else'
tasks.append(task)
# save results into a tab-separated text file
headers= ['list','starred','task']
withopen(output_file, 'w') asf:
# first line are the header names
f.write('t'.join(headers) +'n')
# rest is the data
fortintasks:
f.write('t'.join([t[h] forhinheaders]) +'n')

Open Todoport (Its Paid now) 2. Under “I want to Export From”, click the “Wunderlist” button. Log into your Wunderlist account. Under “I want to Import To”, choose the service you want. The easiest way to switch out of Wunderlist is through Todoport, a web app made for migrating to-do lists. It's a free app, but you will have to switch off any ad-blocker if you want to run it. Currently, Todoport supports exporting your Wunderlist to Toodledo, Todoist, Trello, Asana and Google Tasks. After May 6, the app will no longer sync to the cloud, though you’ll still be able to export your lists to Microsoft To Do. If you’ve been holding onto hope of a Wunderlist resurgence, now.

Export Wunderlist To Trello

Sign up for freeto join this conversation on GitHub. Already have an account? Sign in to comment