Error Description = 'Basic auth with password is not allowed on this instance'.
Code:
from jira.client import JIRA
options = {'server': 'https://organization.atlassian.net/'}
jira = JIRA(options, basic_auth=('email@xxx.com', 'Password'))
WorkAround : Created try and catch block but got the same error.