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

# Asana Loader

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

This loader loads documents from Asana. The user specifies an API token to initialize the AsanaReader. They then specify a `workspace_id` OR a `project_id` to load in the corresponding Document objects.

## Usage

Here's an example usage of the AsanaReader.

```python
import os

from llama_index.readers.asana import AsanaReader

reader = AsanaReader("<ASANA_TOKEN>")

# Option 1
documents = reader.load_data(workspace_id="<WORKSPACE_ID>")

# Option 2
documents = reader.load_data(project_id="<PROJECT_ID>")
```

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