Metadata-Version: 2.4
Name: llama-index-readers-mondaydotcom
Version: 0.5.0
Summary: llama-index readers mondaydotcom integration
Author-email: Your Name <you@example.com>
Maintainer: nadavgr
License-Expression: MIT
License-File: LICENSE
Keywords: monday,mondaydotcom
Requires-Python: <4.0,>=3.10
Requires-Dist: llama-index-core<0.15,>=0.13.0
Requires-Dist: requests<3,>=2.31.0
Description-Content-Type: text/markdown

# Monday Loader

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

This loader loads data from monday.com. The user specifies an API token to initialize the MondayReader. They then specify a monday.com board id to load in the corresponding Document objects.

## Usage

Here's an example usage of the MondayReader.

```python
from llama_index.readers.mondaydotcom import MondayReader

reader = MondayReader("<monday_api_token>")
documents = reader.load_data("<board_id: int>")
```

Check out monday.com API docs - [here](https://developer.monday.com/apps/docs/mondayapi)

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