-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathwunderlist_to_asana.py
135 lines (118 loc) · 4.74 KB
/
wunderlist_to_asana.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
import argparse
import json
import codecs
from operator import itemgetter
import asana
def get_workspace_id(in_asana_token, in_workspace_name):
client = asana.Client.access_token(in_asana_token)
workspace_ids = [
workspace['gid']
for workspace in client.workspaces.find_all()
if workspace['name'] == in_workspace_name
]
result = workspace_ids[0] if len(workspace_ids) else None
return result
def build_note_mapping(in_wunderlist_content):
result = {}
for note in in_wunderlist_content['data']['notes']:
result[note['task_id']] = note['content']
return result
def move_content(in_wunderlist_backup_file, in_asana_token, in_workspace_name, in_team_name):
with codecs.open(in_wunderlist_backup_file, encoding='utf-8-sig') as wunderlist_in:
wunderlist_content = json.load(wunderlist_in)
workspace_id = get_workspace_id(in_asana_token, in_workspace_name)
if not workspace_id:
raise u'Couldn\'t find workspace "{}" in your Asana ' \
u'(please note it\'s case-sensitive)'.format(in_workspace_name)
client = asana.Client.access_token(in_asana_token)
is_org = client.workspaces.find_by_id(workspace_id)['is_organization']
if is_org and not in_team_name:
teams = client.teams.find_by_user('me', organization=workspace_id)
in_team_name = next(teams)['gid']
# Wunderlist list ID --> Asana project ID
for project_index, project in enumerate(wunderlist_content):
print (u'Processing Wunderlist list "{}" ({}/{})'.format(
project['title'],
project_index + 1,
len(wunderlist_content)
))
if is_org:
result = client.projects.create_in_workspace(
workspace_id,
{'name': project['title'], 'team': in_team_name}
)
else:
result = client.projects.create_in_workspace(
workspace_id,
{'name': project['title']}
)
asana_project_id = result['gid']
for task_index, task in enumerate(sorted(
project['tasks'],
key=itemgetter('createdAt')
)):
print (u'Processing the task "{}" ({}/{})'.format(
task['title'],
task_index + 1,
len(project['tasks'])
))
task_json = {
'name': task['title'],
'projects': [asana_project_id],
'completed': task['completed']
}
if 'dueDate' in task:
task_json['due_on'] = task['dueDate']
if task['notes']:
task_json['notes'] = '\n'.join([note['content'] for note in task['notes']])
result = client.tasks.create_in_workspace(
workspace_id,
task_json
)
asana_task_id = result['gid']
for comment_id, comment in enumerate(sorted(task['comments'], key=itemgetter('createdAt'))):
print (u'Processing Wunderlist task\'s comment {}/{}'.format(
comment_id + 1,
len(task['comments'])
))
client.tasks.add_comment(asana_task_id, {'text': comment['text']})
for subtask_id, subtask in enumerate(sorted(
task['subtasks'],
key=itemgetter('createdAt')
)):
print (u'Processing Wunderlist subtask "{}" ({}/{})'.format(
subtask['title'],
subtask_id + 1,
len(task['subtasks'])
))
subtask_json = {
'name': subtask['title'],
'completed': subtask['completed'],
'parent': asana_task_id
}
if 'dueDate' in subtask:
subtask_json['due_on'] = subtask['dueDate']
client.tasks.create_in_workspace(workspace_id, subtask_json)
def parse_args():
parser = argparse.ArgumentParser(
description='Export your Wunderlist content to Asana'
)
parser.add_argument(
'wunderlist_backup',
type=str,
help='Wunderlist backup file (json)'
)
parser.add_argument(
'asana_token',
type=str,
help='Asana personal access token'
)
parser.add_argument('workspace_name', type=str, help='Asana workspace name')
parser.add_argument('--team_name',
type=str,
default=None,
help='Team name (in case your Asana workspace is an organization)')
return parser.parse_args()
if __name__ == '__main__':
args = parse_args()
move_content(args.wunderlist_backup, args.asana_token, args.workspace_name, args.team_name)