-
Notifications
You must be signed in to change notification settings - Fork 4
/
trelloapi.html
53 lines (46 loc) · 1.29 KB
/
trelloapi.html
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
<!DOCTYPE html>
<html>
<head>
<link href="style.css" rel="stylesheet" type="text/css"/>
<title>
Trello Custom Notifications using Trello API
</title>
</head>
<body>
<h1>
Trello Custom Notifications using Trello API
</h1>
<h2>
Requirement
</h2>
<p>
Python 3 and above
</p>
<h2>
Usage
</h2>
<p>
There should be a file named EMAIL_INFO.txt in the same directory of
these scripts <br>
Format of that text file: <email_id> <password> <br>
python trelloapi_feature1.py <br>
python trelloapi_feature2.py
</p>
<h2>
Feature 1
</h2>
<ul>
Sends a notification to the professor regarding any cards
in the DevOps course boards which did not move from last 14 days. <br>
Note: Should execute trelloapi_feature1.py every EOD.
</ul>
<h2>
Feature 2
</h2>
<ul>
Sends a notification to the professor whenever any cards in the
DevOps course boards hits testing list <br>
Note: Should execute trelloapi_feature2.py every every EOD.
</ul>
</body>
</html>