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.1.tar.gz
(2.4 kB
view details)
Built Distribution
File details
Details for the file simpleatlassian-0.0.1.tar.gz
.
File metadata
- Download URL: simpleatlassian-0.0.1.tar.gz
- Upload date:
- Size: 2.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.1 setuptools/39.1.0 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c29130e3c8d3ed5d9fc9f4e00ad09c4f5181e30fedb258d87b6ab53105375410 |
|
MD5 | 04cf1c87691b700a8409a26650bcf7d0 |
|
BLAKE2b-256 | 11739075dc77f130f833194fec4fc194758296a35250d4934b6602a8ad7536ff |
File details
Details for the file simpleatlassian-0.0.1-py3-none-any.whl
.
File metadata
- Download URL: simpleatlassian-0.0.1-py3-none-any.whl
- Upload date:
- Size: 4.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.1 setuptools/39.1.0 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8f8eac3043cd0076a3061bfca68adf5745a8154baf10e594897e32f760e2f63b |
|
MD5 | c9a7fe3e7677fdc15dccceba97c498ce |
|
BLAKE2b-256 | 8474357dd208335ca5a8891639b0b5b44ab1b515c308fd7285187a3882da4a2d |