Skip to content
This repository has been archived by the owner on Mar 26, 2020. It is now read-only.

Latest commit

 

History

History
26 lines (17 loc) · 637 Bytes

readme.md

File metadata and controls

26 lines (17 loc) · 637 Bytes

Pyvotal is python client to [pivotal tracker api] (https://www.pivotaltracker.com/help/api?version=v3)

Install

Use [pip] (http://pip-installer.org/):

pip install pyvotal

Usage

Docs available at [readthedocs.org] (http://readthedocs.org/docs/pyvotal/en/latest/)

Quick example:

from pyvotal import PTracker

ptracker = PTracker(user='someuser', password='somepassword')

project = p.projects.get(project_id)
story =  project.stories.get(story_id)
story.description = "New desc"
story.save()
story.add_note("Note text")
story.add_attachment("FileName", open('/etc/hosts'))