Created
June 1, 2016 15:26
-
-
Save werdan/0ac8fbb8354f20b262e9bc9f3fa888e9 to your computer and use it in GitHub Desktop.
Trello export
This file contains 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
# 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