Skip to content

Instantly share code, notes, and snippets.

@werdan
Created June 1, 2016 15:26
Show Gist options
  • Save werdan/0ac8fbb8354f20b262e9bc9f3fa888e9 to your computer and use it in GitHub Desktop.
Save werdan/0ac8fbb8354f20b262e9bc9f3fa888e9 to your computer and use it in GitHub Desktop.
Trello export
# trello.com/b/Mumoqgty.json
import json
with open('boodmo.json') as data_file:
data = json.load(data_file)
cards = data['cards']
for card in cards:
if (card['closed'] == False and card['idList'] == '55fa9cb8b9338073afd3dedc'):
print card['name'] + " (" + card['shortUrl'] + ")"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment