This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# use Asana's "export project to JSON" function and copy-paste contents to an "asana_dump.js" file | |
import json | |
import csv | |
import pprint | |
pp = pprint.PrettyPrinter(indent=4) | |
f = json.load(open("asana_dump.js")) | |
with open('asana_dump.csv', 'w') as fp: |