Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

llama-index-readers-jira

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

llama-index-readers-jira

llama-index readers jira integration

  • 0.4.1
  • PyPI
  • Socket score

Maintainers
1

JIRA Reader

pip install llama-index-readers-jira

The Jira loader returns a set of issues based on the query provided to the dataloader. We can follow three methods to initialize the loader- 1- basic_auth -> this takes a dict with the following keys basic_auth:{ "email": "email", "api_token": "token", "server_url": "server_url" } 2- Oauth2 -> this takes a dict with the following keys oauth:{ "cloud_id": "cloud_id", "api_token": "token" } 3- Personal access Token with Server hosted instance PATauth:{ "server_url": "server_url", "api_token": "token" }

You can follow this link for more information regarding Oauth2 -> https://developer.atlassian.com/cloud/confluence/oauth-2-3lo-apps/

Usage

Here's an example of how to use it

from llama_index.readers.jira import JiraReader

reader = JiraReader(
    email=email, api_token=api_token, server_url="your-jira-server.com"
)
documents = reader.load_data(query="project = <your-project>")

Alternately, you can also use download_loader from llama_index

from llama_index.readers.jira import JiraReader

reader = JiraReader(
    email=email, api_token=api_token, server_url="your-jira-server.com"
)
documents = reader.load_data(query="project = <your-project>")

Keywords

FAQs


Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc