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 details)
Built Distribution
File details
Details for the file simpleatlassian-0.0.2.tar.gz
.
File metadata
- Download URL: simpleatlassian-0.0.2.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 | 69d4a0949c5f4b45d7ca3245e34ceeafd8dfc0754a2425bcbff5e6a567ea5969 |
|
MD5 | 84a86b3b136530c43f576995e243c4eb |
|
BLAKE2b-256 | caae6eee5340f795b6e5ac5c5d9580199f1dd8f4007cdef21a3ef2e00402a1e1 |
File details
Details for the file simpleatlassian-0.0.2-py3-none-any.whl
.
File metadata
- Download URL: simpleatlassian-0.0.2-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 | 43b3199309a24bb8fe87432eeadce6e83b87ca55e13b1e0acec540198b2942fb |
|
MD5 | 130707b6c3336800887b4c96f617aae7 |
|
BLAKE2b-256 | e7c2c8907072ca5f4d227dbc612911c97442037c9dc7a7142532941d9ae291aa |