llama-index-readers-guru


Namellama-index-readers-guru JSON
Version 0.2.0 PyPI version JSON
download
home_pageNone
Summaryllama-index readers guru integration
upload_time2024-08-22 06:15:24
maintainermcclain-thiel
docs_urlNone
authorYour Name
requires_python<4.0,>=3.8.1
licenseMIT
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.8.1",
    "maintainer_email": null,
    "keywords": "getguru, guru, knowledge base",
    "author": "Your Name",
    "author_email": "you@example.com",
    "download_url": "https://files.pythonhosted.org/packages/91/77/4b837ac7bde3ce940e1852b030b43f1e1a2333a9e11cbf517c410a82e387/llama_index_readers_guru-0.2.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": "MIT",
    "summary": "llama-index readers guru integration",
    "version": "0.2.0",
    "project_urls": null,
    "split_keywords": [
        "getguru",
        " guru",
        " knowledge base"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "355cbc02a9d4a3c2478cd6c3514b93d865e0829895d985f4cb7b03d2731b3115",
                "md5": "e413a5f88258bc4d2d72c8c3c7b6d05d",
                "sha256": "bc0dc1e48ad53028284981a6f7db867158dbfa0102a464d03eb2ae2dfc63069d"
            },
            "downloads": -1,
            "filename": "llama_index_readers_guru-0.2.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "e413a5f88258bc4d2d72c8c3c7b6d05d",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": "<4.0,>=3.8.1",
            "size": 3660,
            "upload_time": "2024-08-22T06:15:22",
            "upload_time_iso_8601": "2024-08-22T06:15:22.732859Z",
            "url": "https://files.pythonhosted.org/packages/35/5c/bc02a9d4a3c2478cd6c3514b93d865e0829895d985f4cb7b03d2731b3115/llama_index_readers_guru-0.2.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "91774b837ac7bde3ce940e1852b030b43f1e1a2333a9e11cbf517c410a82e387",
                "md5": "f4d827d5ac86d114bad93e7f5946bfa2",
                "sha256": "1129d713401e91a9defa3c81094ae92ccfc38cfbedc1c8a535a933423f3bb17f"
            },
            "downloads": -1,
            "filename": "llama_index_readers_guru-0.2.0.tar.gz",
            "has_sig": false,
            "md5_digest": "f4d827d5ac86d114bad93e7f5946bfa2",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": "<4.0,>=3.8.1",
            "size": 3452,
            "upload_time": "2024-08-22T06:15:24",
            "upload_time_iso_8601": "2024-08-22T06:15:24.238583Z",
            "url": "https://files.pythonhosted.org/packages/91/77/4b837ac7bde3ce940e1852b030b43f1e1a2333a9e11cbf517c410a82e387/llama_index_readers_guru-0.2.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-08-22 06:15:24",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "llama-index-readers-guru"
}
        
Elapsed time: 0.40510s