Metadata-Version: 2.4
Name: llama-index-readers-hubspot
Version: 0.4.0
Summary: llama-index readers hubspot integration
Author-email: Your Name <you@example.com>
Maintainer: ykhli
License-Expression: MIT
License-File: LICENSE
Keywords: hubspot
Requires-Python: <4.0,>=3.9
Requires-Dist: hubspot-api-client<9,>=8.2.1
Requires-Dist: llama-index-core<0.14,>=0.13.0
Description-Content-Type: text/markdown

# Hubspot Loader

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

This loader loads documents from Hubspot. The user specifies an access token to initialize the HubspotReader.

At the moment, this loader only supports access token authentication. To obtain an access token, you will need to create a private app by following instructions [here](https://developers.hubspot.com/docs/api/private-apps).

## Usage

Here's an example usage of the HubspotReader.

```python
import os

from llama_index.readers.hubspot import HubspotReader

reader = HubspotReader("<HUBSPOT_ACCESS_TOKEN>")
documents = reader.load_data()
```

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