Skip to main content

Atlassian REST API Python Wrapper.

Project description

Atlassian REST API Python Wrapper

PyPI CodeFactor PyPI - Downloads

What is this?

This package is a wrapper of Atlassian Rest APIs written in Python, currently it supports Atlassian products: JIRA and Bitbucket.

This API package was created to bring ease of implementation for integration with JIRA and Bitbucket.

QuickStart

>>> from atlassian import Jira

>>> jira = Jira(url='https://jira.company.com', username="username", password="password")
>>> issue = jira.issue('TEST-1')
>>> print(issue.fields.status.name)
Triage
>>> print(issue.fields.description)
this is a demo jira ticket
>>> print(issue.fields.status.name)
Triage
>>> print(issue.fields.issuetype.name)
Bug

Save your username and password in a configuration file config.ini, for example:

[jira]
url = https://jira.company.com
username = username
password = password

Then get the credential information though the configuration file config.ini

>>> import configparser
>>> config = configparser.ConfigParser()
>>> config.read('config.ini')

>>> jira_url = config['jira']['url']
>>> jira_usr = config['jira']['username']
>>> jira_psw = config['jira']['password']

>>> jira = Jira(url=jira_url, username=jira_usr, password=jira_psw)
>>> issue = jira.issue('TEST-1')
>>> print(issue.fields.status.name)
Triage
>>> print(issue.fields.description)
this is a demo jira ticket
>>> print(issue.fields.status.name)
Triage
>>> print(issue.fields.issuetype.name)
Bug

More fields

>>> print(issue.id)
1684517
>>> print(issue.key)
TEST-1
>>> print(issue.fields.assignee.key)
xpshen
>>> print(issue.fields.summary)
Jira REST API Unit Test Example
>>> ...

Install from PyPI

# install
$ pip install atlassian-api-py

# upgrade to latest
$ pip install atlassian-api-py --upgrade

Unittest and Coverage

Run unittest

cd tests
python -m unittest

Run coverage

cd tests
coverage run -m unittest
coverage report -m              # to report on the results
coverage html                   # to get annotated HTML

Changelog

To track some minor and micro changes.

Click to expand changelog
  • 0.3.3 - June 4, 2021 - Support bitbucket get_file_content.
  • 0.3.0 - May 9, 2021 - Fixed bitbucket and test_bitbucket issues.
  • 0.2.7 - Apr 20, 2021 - Support create task with components.
  • 0.2.5 - Apr 20, 2021 - Support update_issue_component.
  • 0.2.4 - Mar 28, 2021 - Added create_task into Jira and refactor code.
  • 0.2.0 - Mar 9, 2021 - Convert API return from JSON data into Python object.

FAQ

Q1: Which Jira/BitBucket version I used to develop?

For Jira I used Jira v8.5.9 and Jira Cloud.

For BitBucket I used Bitbucket v5.13.1. not support Bitbucket cloud for now.

Q2: Are there any major changes?

From 0.2.0 - Mar 9, 2021, convert get JIra API data from dict to object, no longer compatible with past old versions.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

atlassian_api_py-0.3.4-py3-none-any.whl (10.7 kB view details)

Uploaded Python 3

File details

Details for the file atlassian_api_py-0.3.4-py3-none-any.whl.

File metadata

  • Download URL: atlassian_api_py-0.3.4-py3-none-any.whl
  • Upload date:
  • Size: 10.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.2.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.8.10

File hashes

Hashes for atlassian_api_py-0.3.4-py3-none-any.whl
Algorithm Hash digest
SHA256 5bcf2e0096ddc34cf43532ff312a91f46ee57760e2a50fb4d0ce36bb55fecde3
MD5 19059968295bc58fb4ef4a9652995f16
BLAKE2b-256 be47d30a4a0ee94ceca733903bdf8d4d86b548b3b6f4cde562fb5c2bfe1374d3

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page