A Python client for the Jama Connect REST API. Current version 1.17.1. Released irregularly.
pip install py-jama-rest-clientVerified import paths — ran on the pinned version, not inferred.
Authenticate and list projects.
For OAuth: Client(base_url, oauth=True, access_token='...'). For basic auth: Client(base_url, username='...', password='...', oauth=False).
Replace `from jama import JamaClient` with `from jama.client import Client`.
Loop through pages using the 'links' key in response, e.g., while response.get('links', {}).get('next'): response = client.get(response['links']['next'])