Skip to content

Instantly share code, notes, and snippets.

@Jaballadares
Created January 17, 2018 08:31
Show Gist options
  • Save Jaballadares/74197474ab8a9778be49e08cde53e596 to your computer and use it in GitHub Desktop.
Save Jaballadares/74197474ab8a9778be49e08cde53e596 to your computer and use it in GitHub Desktop.
Blockspring - Export All Tasks for Particular Project
import google_sheets_app
import asana_app
def export():
sheets = google_sheets_app.get_spreadsheet_by_id(
"your_googlesheet_id_here"
).get_sheets()[0]
julian = asana_app.get_project_by_id("your_asana_project_id_here")
# ws = asana_app.get_current_workspace()
# projects = ws.get_projects()
tasks = julian.get_tasks()
sheets.write_values(tasks)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment