llama-index-readers-guru


Namellama-index-readers-guru JSON
Version 0.4.0 PyPI version JSON
download
home_pageNone
Summaryllama-index readers guru integration
upload_time2025-07-30 20:54:06
maintainermcclain-thiel
docs_urlNone
authorNone
requires_python<4.0,>=3.9
licenseNone
keywords getguru guru knowledge base
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # 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/).

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "llama-index-readers-guru",
    "maintainer": "mcclain-thiel",
    "docs_url": null,
    "requires_python": "<4.0,>=3.9",
    "maintainer_email": null,
    "keywords": "getguru, guru, knowledge base",
    "author": null,
    "author_email": "Your Name <you@example.com>",
    "download_url": "https://files.pythonhosted.org/packages/8e/30/6e7edef6f145a96383d82bf91d13254f6ffebbbeca9b4ba0df5877c44056/llama_index_readers_guru-0.4.0.tar.gz",
    "platform": null,
    "description": "# Guru Loader\n\n```bash\npip install llama-index-readers-guru\n```\n\nThis loader loads documents from [Guru](https://www.getguru.com/). The user specifies a username and api key to initialize the GuruReader.\n\nNote this is not your password. You need to create a new api key in the admin tab of the portal.\n\n## Usage\n\nHere's an example usage of the GuruReader.\n\n```python\nfrom llama_index.readers.guru import GuruReader\n\nreader = GuruReader(username=\"<GURU_USERNAME>\", api_key=\"<GURU_API_KEY>\")\n\n# Load all documents in a collection\ndocuments = reader.load_data(\n    collection_ids=[\"<COLLECTION_ID_1>\", \"<COLLECTION_ID_2>\"]\n)\n\n# Load specific cards by card id\ndocuments = reader.load_data(card_ids=[\"<CARD_ID_1>\", \"<CARD_ID_2>\"])\n```\n\nThis loader is designed to be used as a way to load data into [LlamaIndex](https://github.com/run-llama/llama_index/).\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "llama-index readers guru integration",
    "version": "0.4.0",
    "project_urls": null,
    "split_keywords": [
        "getguru",
        " guru",
        " knowledge base"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "855e96a8db9d9b2e430a1d417747bed5ef02db0401963bef535e640bdec8a440",
                "md5": "0df2d574d7171737df986ea82539e5d4",
                "sha256": "2d4ccc69142990592a01da3e10007ea0e64b3b7184bed35b51381601de44cef7"
            },
            "downloads": -1,
            "filename": "llama_index_readers_guru-0.4.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "0df2d574d7171737df986ea82539e5d4",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": "<4.0,>=3.9",
            "size": 4472,
            "upload_time": "2025-07-30T20:54:06",
            "upload_time_iso_8601": "2025-07-30T20:54:06.063095Z",
            "url": "https://files.pythonhosted.org/packages/85/5e/96a8db9d9b2e430a1d417747bed5ef02db0401963bef535e640bdec8a440/llama_index_readers_guru-0.4.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8e306e7edef6f145a96383d82bf91d13254f6ffebbbeca9b4ba0df5877c44056",
                "md5": "07a4ca56a9aeb08c3870a9c815fe373a",
                "sha256": "2809ca6340ff6de13bfec14028194ccc45006fabd0ed2a3d15b52ef93d1e89ff"
            },
            "downloads": -1,
            "filename": "llama_index_readers_guru-0.4.0.tar.gz",
            "has_sig": false,
            "md5_digest": "07a4ca56a9aeb08c3870a9c815fe373a",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": "<4.0,>=3.9",
            "size": 4893,
            "upload_time": "2025-07-30T20:54:06",
            "upload_time_iso_8601": "2025-07-30T20:54:06.741573Z",
            "url": "https://files.pythonhosted.org/packages/8e/30/6e7edef6f145a96383d82bf91d13254f6ffebbbeca9b4ba0df5877c44056/llama_index_readers_guru-0.4.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-07-30 20:54:06",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "llama-index-readers-guru"
}
        
Elapsed time: 1.53799s