A really basic Atlassian REST Client
Project description
python-simpleatlassian
The most simple, and most powerful Atlassian (JIRA) Python API
Installation
pip install simpleatlassian
Usage
from simpleatlassian import JIRA
# Make a connection with basic auth
j = JIRA(
'https://myjirahost.com/jira/rest/',
username='myuser',
password='mypw'
)
# Search some issues (get_all collects all pages of a result)
issues = j.get_all(
'api/2/search',
params={
'jql': 'issuetype = Bug'
},
resultfield='issues'
)
# Get a board configuration
j.get('agile/1.0/board/1/configuration')
Don't forget to check out Atlassian's official documentation: https://docs.atlassian.com/jira-software/REST/latest/
Development
Upload to pip
- Make sure that the version number has been updated
- Generate dist files
python setup.py sdist bdist_wheel
- Upload to PyPI
twine upload dist/*
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
simpleatlassian-0.0.2.tar.gz
(2.4 kB
view hashes)
Built Distribution
Close
Hashes for simpleatlassian-0.0.2-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 43b3199309a24bb8fe87432eeadce6e83b87ca55e13b1e0acec540198b2942fb |
|
MD5 | 130707b6c3336800887b4c96f617aae7 |
|
BLAKE2b-256 | e7c2c8907072ca5f4d227dbc612911c97442037c9dc7a7142532941d9ae291aa |