# pyvotal **Repository Path**: mirrors_getsentry/pyvotal ## Basic Information - **Project Name**: pyvotal - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-09-24 - **Last Updated**: 2026-02-22 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README 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'))