This library is DEPRECATED, please switch to jira-python package (REST)
- Alex Brett alex@xensource.com
- Anil Madhavapeddy anil@xensource.com
A Python library for SOAP interaction with JIRA.
Common usage pattern includes:
- creating a
Jira
object; - fetching an issue with it;
- manipulating the issue through available methods.
For example:
j = jira.Jira("http://my-jira-url/", "my-username", "my-password")
i = j.getIssue("CA-5555")
i.addComment("This is a test comment.")
The library is actively used by the pull-request-manager.
Feedback and contributions are welcome. Please submit contributions via GitHub pull requests.