Skip to content

GetDoneDone/Classic-API-v1-Python

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 

Repository files navigation

DoneDone Classic API v1 PHP Wrapper

REQUIREMENT

Python version 2.6+ (developed against 2.6.7) Python's cURL module

USAGE

To use the Python library with a DoneDone project, you will need to enable the API option under the Project Settings page.

Please see http://www.getdonedone.com/api fore more detailed documentation.

EXAMPLES

'''Initializing'''
from DoneDone import IssueTracker

domain = "YOUR_COMPANY_DOMAIN" #e.g. wearemammoth
token = "YOUR_API_TOKEN"
username = "YOUR_USERNAME"
password = "YOUR_PASSWORD"

issueTracker = IssueTracker(domain, token, username, password)

'''Calling the API 

API methods can be accessed by calling IssueTracker::API(), or by calling the equivalent shorthand.

The examples below will get all your projects with the API enabled.
'''

issueTracker.API("GetProjects")
# or
issueTracker.getProjects()

About

PHP Wrapper for DoneDone Classic API v1

ttps://www.donedone.com/api/classic/v1

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 3

  •  
  •  
  •  

Languages