Skip to main content

llama-index readers jira integration

Project description

JIRA Reader

The Jira loader returns a set of issues based on the query provided to the dataloader. We can follow two 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" }

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_hub.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 import download_loader

JiraReader = download_loader("JiraReader")

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

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

llama_index_readers_jira-0.1.0.tar.gz (2.8 kB view hashes)

Uploaded Source

Built Distribution

llama_index_readers_jira-0.1.0-py3-none-any.whl (3.2 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page