I’ve already executed the command pip install jira
but continue to encounter an ImportError stating: unable to import JIRA. Here’s the code I’m running:
import re
from jira import JIRA
jira_instance = JIRA('https://issues.net')
# Note: These values are placeholders and won't work in your implementation!
cert_data = None
cert_file_path = "cert/jiraprivatekey.pub"
with open(cert_file_path, 'r') as cert_file:
cert_data = cert_file.read()