Python client for the JIRA SOAP API. Tested with JIRA 4.1 - 5.1 and Python 2.6 / 2.7.
Configuration
First, you need to set up the configuration. Either create a config.ini file in the jira folder, or if you’re using this in a Django project, you can put the settings in your settings.py, for example:
JIRA_RPC_USER = 'abc' JIRA_RPC_PASS = '123' JIRA_WSDL_URL = 'http://jira.example.com/rpc/soap/jirasoapservice-v2?wsdl' JIRA_TESTING = True JIRA_TEST_PROJECT = 'TEST'
WARNING If TESTING is set to True, the client connects to a project named TEST (which is assumed to exist on the server). This is useful for testing functionality on a test project before pushing into production (maintaining an entire JIRA server just for testing seems excessive). If you have a real project called TEST, you should change this by overriding the test project name in the settings (see config.example.ini).
Installation
The only requirement is Suds:
pip install -r requirements.txt
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file jira-rpc-0.1.tar.gz.
File metadata
- Download URL: jira-rpc-0.1.tar.gz
- Upload date:
- Size: 6.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7feae4d55ecff865008e853ca4a99146581978701296381a97f4fcec5adf5f15
|
|
| MD5 |
0f2e7243f4397b5b55407b665fedcc62
|
|
| BLAKE2b-256 |
2d47c85470b9406aa078385c036f05bf2fdbe54ff4457c99a94851de5eddad6b
|