Export your Wunderlist content to Asana
- Wunderlist lists --> Asana projects
- Wunderlist tasks --> Asana tasks
Preserved are:
- subtasks,
- due dates,
- completion status,
- notes,
- comments.
- Get
Python
andpip
for your system (if in doubt, just install Miniconda) - Create your Wunderlist backup (Account Settings --> Create export) - you'll need the
Tasks.json
file from the resulting zip - Create your Asana private access token (My Profile Settings --> Apps --> Manage Developer Apps)
- Run the following:
$ pip install -r requirements.txt
$ python wunderlist_to_asana.py \
<Wunderlist backup file> \
<Asana token> \
<Asana workspace name - must exist already> \
[team_id - if your workspace is an organization]
team_id
doesn't apply to you if your workspace is not an organization; if you're indeed part of an organization but don't know/don't care which team_id should be used, the script will default to the 1st one of the teams you're on as retrieved from Asana.