Jiraone

Latest version: v0.8.6

Safety actively analyzes 710445 Python packages for vulnerabilities to keep your Python projects secure.

Scan your dependencies

Page 9 of 12

0.3.0

34 Minor updates
* Corrected USER.search_user() method if the search file doesn't exist. Rather than throw `FileNotFoundError`, create an empty file.

0.2.9

33 Micro update
* Corrected the return statement for USER.search_user() method so it can return multiple users of the same name if exist.

0.2.8

32 Micro updates
* Added a new reporting method PROJECT.change_log() for fetching issue history.
* updated method PROJECT.download_attachments() method.
* Added method PROJECT.bytes_converter() used for checking KB and MB conversions.
* Added new reporting called USER.search_user() method.

Find user

python
from jiraone import LOGIN, USER

user = "email"
password = "token"
link = "https://yourinstance.atlassian.net"
LOGIN(user=user, password=password, url=link)


if __name__ == '__main__':
the output of the file would be absolute to the directory where this python file is being executed from
name = "Prince Nyeche" displayName of a user
USER.search_user(pull="active", user_type="atlassian", find_user=name)


Changelog

python
from jiraone import LOGIN, PROJECT

user = "email"
password = "token"
link = "https://yourinstance.atlassian.net"
use {LOGIN.api = False} if you want to extract the issue history from a Server instance
LOGIN(user=user, password=password, url=link)

if __name__ == '__main__':
the output of the file would be absolute to the directory where this python file is being executed from
jql = "project in (PYT) ORDER BY Rank DESC" A valid JQL query
PROJECT.change_log(jql=jql)

0.2.7

31 Micro updates
* Changed the error name on field.extract_issue_field_options() method
* No release for v0.2.6 as it's equivalent to v0.2.7
* Added a comment method which can be called by saying
python
from jiraone import comment



* That variable is still a work in progress, for now you can only get comments. Other abilities should include creating and updating comments

0.2.5

30 Micro updates
* Added attribute `LOGIN.api` - it is a bool attribute and it helps to toggle the api version from "3" to "latest". This is useful, when you want to make a call to a Server or Datacenter instance of Jira.
Example usage:
python
from jiraone import LOGIN

user = "username"
password = "password"
link = "https://yourinstance.server.com"
LOGIN.api = False this sets the api to latest
LOGIN(user=user, password=password, url=link)

0.2.4

27 Micro update
* Corrected some methods of the `Field class`

Page 9 of 12

© 2025 Safety CLI Cybersecurity Inc. All Rights Reserved.