Hello
I am trying to create automate tickets in Jira using lambda and python, and I am getting this error:
[ERROR] Runtime.ImportModuleError: Unable to import module 'lambda_function': No module named 'jira'
Traceback (most recent call last):
I am importing jira like:
from jira import JIRA
Am I missing something? why this is not working, I am a newbie :) so it may be something that I am just not seeing?
Thanks a lot
Vanessa
That means that there is no module called Jira to be imported. This isn't strictly an Atlassian question as they don't (publically or officially) provide any modules for python authors, so you'll need to be looking to the docs for the module(s) you are trying to import.
As a general guide to "module not found", https://pytutorial.com/how-to-solve-modulenotfounderror-no-module-named-in-python got me started when I first ran into it.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.