Metadata-Version: 1.1
Name: python-taiga
Version: 0.8.5
Summary: Taiga python API
Home-page: UNKNOWN
Author: Nephila
Author-email: info@nephila.it
License: MIT
Description: python-taiga
        ============
        
        |Build Status| |Codecov.io Status| |Latest Version| |Supported Python
        versions| |License| |Downloads|
        
        A module for using the `Taiga REST
        API <http://taigaio.github.io/taiga-doc/dist/api.html>`__.
        
        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).
        
        .. code:: python
        
            from taiga import TaigaAPI
        
            api = TaigaAPI()
        
            api.auth(
                username='user',
                password='psw'
            )
        
        Alternately, you can pass a token to the constructor ``TaigaAPI``
        constructor.
        
        .. code:: python
        
            from taiga import TaigaAPI
        
            api = TaigaAPI(token='mytoken')
        
        You can also specify a different host if you use Taiga somewhere else
        
        .. code:: python
        
            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
        
        .. code:: python
        
            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
        ~~~~~~~~~~~~~~~~
        
        .. code:: python
        
            new_project = api.projects.create('TEST PROJECT', 'TESTING API')
        
        Create a new user story
        ~~~~~~~~~~~~~~~~~~~~~~~
        
        .. code:: python
        
            userstory = new_project.add_user_story(
                'New Story', description='Blablablabla'
            )
        
        You can also create a milestone and pass it to a story
        
        .. code:: python
        
            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
        
        .. code:: python
        
            userstory.add_task(
                'New Task 2',
                new_project.task_statuses[0].id
            )
        
        Create an issue
        ~~~~~~~~~~~~~~~
        
        .. code:: python
        
            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
        ~~~~~~~~~~~~~~~~~~~~~~~~~
        
        .. code:: python
        
            new_project.add_issue_attribute(
                'Device', description='(iPad, iPod, iPhone, Desktop, etc.)'
            )
            newissue.set_attribute('1', 'Desktop')
        
        List elements
        ~~~~~~~~~~~~~
        
        .. code:: python
        
            projects = api.projects.list()
            stories = api.user_stories.list()
        
        You can also specify filters
        
        .. code:: python
        
            tasks = api.tasks.list(project=1)
        
        Attach a file
        ~~~~~~~~~~~~~
        
        You can attach files to issues, user stories and tasks
        
        .. code:: python
        
            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
        
        .. code:: python
        
            new_project = api.projects.create('TEST PROJECT', 'TESTING API')
            new_project.star()
        
        Any instance can be updated and deleted
        
        .. code:: python
        
            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:
        
        .. code:: python
        
            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:
        
        .. code:: python
        
            history = api.history.user_story.get(user_story.id)
        
        We're working on documentation, you can find a complete example in
        demo.py.
        
        .. |Build Status| image:: http://img.shields.io/travis/nephila/python-taiga.svg?branch=master
           :target: https://travis-ci.org/nephila/python-taiga
        .. |Codecov.io Status| image:: https://img.shields.io/codecov/c/github/nephila/python-taiga.svg
           :target: http://codecov.io/github/nephila/python-taiga?branch=master
        .. |Latest Version| image:: https://img.shields.io/pypi/v/python-taiga.svg
           :target: https://pypi.python.org/pypi/python-taiga/
        .. |Supported Python versions| image:: https://img.shields.io/badge/python-2.6%2C%202.7%2C%203.3%2C%203.4-blue.svg
           :target: https://pypi.python.org/pypi/python-taiga/
        .. |License| image:: https://img.shields.io/github/license/nephila/python-taiga.svg
           :target: https://pypi.python.org/pypi/python-taiga/
        .. |Downloads| image:: https://img.shields.io/pypi/dm/python-taiga.svg
           :target: https://pypi.python.org/pypi/python-taiga/
        
Keywords: taiga kanban wrapper api
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
