jama python rest api

Solutions on MaxInterview for jama python rest api by the best coders in the world

showing results for - "jama python rest api"
Mattheo
06 Feb 2018
1from py_jama_rest_client.client import JamaClient
2
3oauth_client = JamaClient('https://yourdomain.jamacloud.com', credentials=('clientID', 'ClientSecret'), oauth=True)
4
Eleonora
26 Jan 2018
1from py_jama_rest_client.client import JamaClient
2
3basic_auth_client = JamaClient('https://yourdomain.jamacloud.com', credentials=('username', 'password'))
4