We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6cc8f87 commit 9727e2aCopy full SHA for 9727e2a
1 file changed
README.md
@@ -51,6 +51,17 @@ api = TaigaAPI(
51
)
52
```
53
54
+### Get projects, user stories, task and issues
55
+
56
+You can get projects, user stories, tasks and issues using the primary key or using slug/ref
57
58
+```python
59
+new_project = api.projects.get_by_slug('nephila')
60
+print (new_project.get_issue_by_ref(1036))
61
+print (new_project.get_userstory_by_ref(1111))
62
+print (new_project.get_task_by_ref(1112))
63
+```
64
65
### Create a project
66
67
```python
0 commit comments