Metadata-Version: 2.4
Name: llama-index-readers-mbox
Version: 0.5.1
Summary: llama-index readers mbox integration
Author-email: Your Name <you@example.com>
Maintainer: minosvasilias
License-Expression: MIT
License-File: LICENSE
Requires-Python: <4.0,>=3.9
Requires-Dist: llama-index-core<0.15,>=0.13.0
Requires-Dist: llama-index-readers-file<0.6,>=0.5.0
Description-Content-Type: text/markdown

# LlamaIndex Readers Integration: Mbox

## Overview

Mbox Reader is a simple reader for mbox (mailbox) files, commonly used for storing email messages. It reads a set of emails saved in the mbox format and extracts them into documents.

### Installation

You can install Mbox Reader via pip:

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

### Usage

```python
from llama_index.readers.mbox import MboxReader

# Initialize MboxReader
reader = MboxReader()

# Load data from mbox files in the input directory
documents = reader.load_data(input_dir="<Input Directory>")
```

This loader is designed to be used as a way to load data into
[LlamaIndex](https://github.com/run-llama/llama_index/tree/main/llama_index) and/or subsequently
used as a Tool in a [LangChain](https://github.com/hwchase17/langchain) Agent.
