xenserver / jiralib

A Python library for SOAP interaction with JIRA.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

JIRALIB

This library is DEPRECATED, please switch to jira-python package (REST)

Original authors

Description

A Python library for SOAP interaction with JIRA.

Usage

Common usage pattern includes:

  1. creating a Jira object;
  2. fetching an issue with it;
  3. 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

Feedback and contributions are welcome. Please submit contributions via GitHub pull requests.

About

A Python library for SOAP interaction with JIRA.


Languages

Language:Python 100.0%