Metadata-Version: 2.4
Name: llama-index-readers-guru
Version: 0.5.0
Summary: llama-index readers guru integration
Author-email: Your Name <you@example.com>
Maintainer: mcclain-thiel
License-Expression: MIT
License-File: LICENSE
Keywords: getguru,guru,knowledge base
Requires-Python: <4.0,>=3.10
Requires-Dist: bs4
Requires-Dist: llama-index-core<0.15,>=0.13.0
Requires-Dist: pandas
Description-Content-Type: text/markdown

# Guru Loader

```bash
pip install llama-index-readers-guru
```

This loader loads documents from [Guru](https://www.getguru.com/). The user specifies a username and api key to initialize the GuruReader.

Note this is not your password. You need to create a new api key in the admin tab of the portal.

## Usage

Here's an example usage of the GuruReader.

```python
from llama_index.readers.guru import GuruReader

reader = GuruReader(username="<GURU_USERNAME>", api_key="<GURU_API_KEY>")

# Load all documents in a collection
documents = reader.load_data(
    collection_ids=["<COLLECTION_ID_1>", "<COLLECTION_ID_2>"]
)

# Load specific cards by card id
documents = reader.load_data(card_ids=["<CARD_ID_1>", "<CARD_ID_2>"])
```

This loader is designed to be used as a way to load data into [LlamaIndex](https://github.com/run-llama/llama_index/).
