aiojira - asynchronous Jira Python library
Asynchronous Jira Python library - asynchronous wrapper for https://github.com/pycontribs/jira
Installation
To install from PyPI run:
$ pip install https://github.com/yifeikong/aioify/archive/master.zip
$ pip install aiojiraUsage
For documentation refer to https://jira.readthedocs.io, because aiojira uses the same API as jira with 2 exceptions:
- All functions are converted to coroutines, that means you have to add
awaitkeyword before all function calls. - To asynchronously create classes from
aiojirause static methodcreate.
Example:
import asyncio
import aiojira
server = 'https://jira.example.com/'
auth = ('user', 'password')
JIRA = asyncio.run(aiojira.JIRA.create(server=server, basic_auth=auth))
projects = asyncio.run(JIRA.projects())
print(projects)On this page
Languages
Python100.0%
Contributors
Apache License 2.0
Created September 21, 2018
Updated November 24, 2025