Created
June 1, 2016 15:26
-
-
Save werdan/2e6a3a382f8b845c95ff7a2b5227851d 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
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