We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f8af3ee commit dafbcb8Copy full SHA for dafbcb8
1 file changed
README.md
@@ -0,0 +1,22 @@
1
+# Priority Matrix Python API
2
+#Requirements
3
+
4
+Priority Matrix requires the following modules:
5
+ - Python 2.5+
6
+ - Slumber
7
+ - Demjson
8
+ - Quick view of PM use
9
10
+PM is easy to use to interact with the API:
11
+test.py:
12
13
+```
14
+import priority_matrix
15
16
+pm = PM("https://sync.appfluence.com/api/v1/", "your_access_token")
17
18
+print pm.project("project_name").item("item_name").toString()
19
+pm.project("project_name").item("item_name").name = "New item name"
20
+print pm.project("project_name").item("item_name").name
21
+print pm.project("project_name").item("item_name").id
22
0 commit comments