Skip to content

Commit dafbcb8

Browse files
committed
Added README.md
1 parent f8af3ee commit dafbcb8

1 file changed

Lines changed: 22 additions & 0 deletions

File tree

README.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)