Skip to content

JulienLaloux/TPy

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

TPy

Build Status

TPy is a Python wrapper for the TargetProcess API.
It is designed to make interfacing with the REST API easier.

import tpy
# Authenticate with an API key...
tp = tpy.TargetProcess('http://demo.tpondemand.com/',api_key=BLAH)
# or Basic auth...
tp = tpy.TargetProcess('http://demo.tpondemand.com/',username=admin,password=supersecret)
# loop through our stories
for story in tp.UserStories.all:
    print story.Id

Installation

You can install via pip

pip install tpy

Or via easy-install

easy_install tpy

Or via setup.py

python setup.py install

Documentation

View the documentation at http://tpy.readthedocs.org

License

All of the code contained here is licensed by the GNU GPLv3.

About

Python wrapper for the TargetProcess API

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published