Taiga python API
Project description
A module for using the Taiga REST API. Documentation: https://python-taiga.readthedocs.io/
Install
pip install python-taiga
Contribute to python-taiga
If you want to contribute to python-taiga with small fixes or updates please open a PR on Github
If you want to start working on a big feature please let’s discuss it together, opening a new issue
If you want to contribute to python-taiga’s documentation use the generate_docs.sh script to build the official documentation and send a PR (We use sphinx http://sphinx-doc.org/)
Getting Started
Getting started with the Taiga API couldn’t be easier. Create a TaigaAPI and you’re ready to go.
API Credentials
The TaigaAPI needs your Taiga credentials. You can pass these directly to the auth method (see the code below).
from taiga import TaigaAPI
api = TaigaAPI()
api.auth(
username='user',
password='psw'
)
Alternately, you can pass a token to the constructor TaigaAPI constructor.
from taiga import TaigaAPI
api = TaigaAPI(token='mytoken')
You can also specify a different host if you use Taiga somewhere else
from taiga import TaigaAPI
api = TaigaAPI(
host='http://taiga.my.host.org'
)
Get projects, user stories, task and issues
You can get projects, user stories, tasks and issues using the primary key or using slug/ref
new_project = api.projects.get_by_slug('nephila')
print (new_project.get_issue_by_ref(1036))
print (new_project.get_userstory_by_ref(1111))
print (new_project.get_task_by_ref(1112))
Create a project
new_project = api.projects.create('TEST PROJECT', 'TESTING API')
Create a new user story
userstory = new_project.add_user_story(
'New Story', description='Blablablabla'
)
You can also create a milestone and pass it to a story
jan_feb_milestone = new_project.add_milestone(
'MILESTONE 1', '2015-01-26', '2015-02-26'
)
userstory = new_project.add_user_story(
'New Story', description='Blablablabla',
milestone=jan_feb_milestone.id
)
To add a task to your user story just run
userstory.add_task(
'New Task 2',
new_project.task_statuses[0].id
)
Create an issue
newissue = new_project.add_issue(
'New Issue',
new_project.priorities.get(name='High').id,
new_project.issue_statuses.get(name='New').id,
new_project.issue_types.get(name='Bug').id,
new_project.severities.get(name='Minor').id,
description='Bug #5'
)
Create a custom attribute
new_project.add_issue_attribute(
'Device', description='(iPad, iPod, iPhone, Desktop, etc.)'
)
newissue.set_attribute('1', 'Desktop')
List elements
projects = api.projects.list()
stories = api.user_stories.list()
You can also specify filters
tasks = api.tasks.list(project=1)
Attach a file
You can attach files to issues, user stories and tasks
newissue.attach('README.md', description='Read the README in Issue')
Play with instances
Instances can have actions, for example you can star a project just calling
new_project = api.projects.create('TEST PROJECT', 'TESTING API')
new_project.star()
Any instance can be updated and deleted
new_project.name = 'New name for my project'
new_project.update()
new_project.delete()
Search
Search function returns a SearchResult object, containing tasks, user stories and issues:
projects = api.projects.list()
search_result = api.search(projects[0].id, 'NEW')
for user_story in search_result.user_stories:
print (user_story)
History
You can access the history of issues, tasks, userstories and wiki pages:
history = api.history.user_story.get(user_story.id)
You can find a complete example in demo.py.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file python-taiga-1.0.0b1.tar.gz
.
File metadata
- Download URL: python-taiga-1.0.0b1.tar.gz
- Upload date:
- Size: 21.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/2.7.14
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 554ae5cc64b364d162f319151ac20be1a764dfae816e5def9625c71959603698 |
|
MD5 | b4b05c0e1e6448a5c0653030fc1ee5f1 |
|
BLAKE2b-256 | 384fe1d9909da3a884cc9ff0e1a1b9fcc86003bb758a4b9a3fc76aba7703da08 |
Provenance
File details
Details for the file python_taiga-1.0.0b1-py2.py3-none-any.whl
.
File metadata
- Download URL: python_taiga-1.0.0b1-py2.py3-none-any.whl
- Upload date:
- Size: 18.6 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/2.7.14
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 70f74bb52bcb3480320af809ab2ab9d3c5608575965cc07f743794e06f49a3b2 |
|
MD5 | 680ef4a6c3d0519fb02803ee0e51e3ed |
|
BLAKE2b-256 | d46503de1bbb5f080da8bd5cd75148aee3bb2812f7fd1e005e95a4c228038f02 |