mirror of
https://github.com/run-llama/llama-hub.git
synced 2025-08-16 12:41:27 +00:00
18 lines
525 B
Markdown
18 lines
525 B
Markdown
![]() |
# JIRA Loader
|
||
|
|
||
|
The Jira loader returns a set of issues based on the query provided to the dataloader. The user intializes the reader with an email, API key and the URL of the server they wish to fetch issues from.
|
||
|
|
||
|
## Usage
|
||
|
|
||
|
Here's an example of how to use it
|
||
|
|
||
|
python```
|
||
|
from llama_index import download_loader
|
||
|
import os
|
||
|
|
||
|
JiraReader = download_reader('JiraReader')
|
||
|
|
||
|
reader = JiraReader(email=email, api_key=api_key, server_url="https://your-jira-server.com"
|
||
|
documents = reader.load_data(query='project = <your-project>')
|
||
|
```
|