-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyExportTrelloList.py
91 lines (75 loc) · 2.59 KB
/
pyExportTrelloList.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
import urllib
import json
import time
import sys
from urllib.request import urlopen
#Check for py plugins
import subprocess
reqs = subprocess.check_output([sys.executable, '-m', 'pip', 'freeze'])
installed_packages = [r.decode().split('==')[0] for r in reqs.split()]
#Open the json file where the api keys are stored.
#check if file exists
try:
with open('TrelloKeys.json', encoding="utf8") as f:
keys = json.load(f)
except FileNotFoundError:
print('TrelloKeys.json was not found.')
input('Press ENTER to exit')
#get API keys out of the TrelloKeys.json
api_key = keys['key']
api_token = keys['token']
api_boardId = keys['boardId']
#card tags string
global card_tags
card_tags = ''
#URL for the urrlib call
boardURL = 'https://api.trello.com/1/boards/' + api_boardId + '?key=' + \
api_key + '&token=' + api_token + '&fields=all&cards=all&card_fields=all&pluginData=true&card_pluginData=true&lists=all'
try:
response = urllib.request.urlopen(boardURL)
except:
input("Could not access Trello API. Please check your keys in TrelloKeys.json...")
jsonFile=response.read()
data = json.loads(jsonFile)
boardName = data['name']
print('***********************')
print(boardName)
print('***********************')
print("What is the name of the list you want to export?")
listName = input()
#print(data['lists'])
for lists in data['lists']:
#print(lists['name'])
if(listName == lists['name']):
print('***List has been found***')
listId = lists['id']
# else:
# sys.exit("ERROR: Done 13-02-2019COULD NOT FIND LIST....")
# break
time.sleep(0.5)
print('list id is:' + listId + '\n')
time.sleep(0.5)
print("Do you want tags included? Y/N:")
tags_allowed = input()
toPasteTxt = listName + ':\n'
print('-------------------The Changelog Is---------------------')
for cards in data['cards']:
if(listId == cards['idList']):
if tags_allowed.lower() == 'y':
if not len(cards['labels']) == 0:
for tags in cards['labels']:
card_tags += '[' + str(tags['name']) + '] '
else:
card_tags = ''
changeTxt = '* '+ card_tags + cards['name']
card_tags = ''
toPasteTxt += changeTxt + '\n'
print(changeTxt)
time.sleep(0.1)
print('--------------------------------------------------------')
#see if pyperclip is in installed_packages
if 'pyperclip' in installed_packages:
import pyperclip
pyperclip.copy(toPasteTxt)
print('Your changelog is now under your clipboard. CTRL+V to paste it somewhere!')
input('Press ENTER to exit')