llama-index-readers-mbox


Namellama-index-readers-mbox JSON
Version 0.2.0 PyPI version JSON
download
home_pageNone
Summaryllama-index readers mbox integration
upload_time2024-08-22 14:27:46
maintainerminosvasilias
docs_urlNone
authorYour Name
requires_python<4.0,>=3.8.1
licenseMIT
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # 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.

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "llama-index-readers-mbox",
    "maintainer": "minosvasilias",
    "docs_url": null,
    "requires_python": "<4.0,>=3.8.1",
    "maintainer_email": null,
    "keywords": null,
    "author": "Your Name",
    "author_email": "you@example.com",
    "download_url": "https://files.pythonhosted.org/packages/34/16/a290bd8b0c80a3b2f6812c799e0bd16c899a78e576ee73b0ec8a44185c11/llama_index_readers_mbox-0.2.0.tar.gz",
    "platform": null,
    "description": "# LlamaIndex Readers Integration: Mbox\n\n## Overview\n\nMbox 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.\n\n### Installation\n\nYou can install Mbox Reader via pip:\n\n```bash\npip install llama-index-readers-mbox\n```\n\n### Usage\n\n```python\nfrom llama_index.readers.mbox import MboxReader\n\n# Initialize MboxReader\nreader = MboxReader()\n\n# Load data from mbox files in the input directory\ndocuments = reader.load_data(input_dir=\"<Input Directory>\")\n```\n\nThis loader is designed to be used as a way to load data into\n[LlamaIndex](https://github.com/run-llama/llama_index/tree/main/llama_index) and/or subsequently\nused as a Tool in a [LangChain](https://github.com/hwchase17/langchain) Agent.\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "llama-index readers mbox integration",
    "version": "0.2.0",
    "project_urls": null,
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b3fe4683116e8d1dc14fcad19db22305a018f624d525c853c86d7ac9be7c8f81",
                "md5": "c87ecb8517acbf3623eb04a28f8f80ed",
                "sha256": "5a5e9e5e68217cf8200f327f6c7a8301bcd3c6aeab7154d6318afc532c67a950"
            },
            "downloads": -1,
            "filename": "llama_index_readers_mbox-0.2.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "c87ecb8517acbf3623eb04a28f8f80ed",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": "<4.0,>=3.8.1",
            "size": 2483,
            "upload_time": "2024-08-22T14:27:40",
            "upload_time_iso_8601": "2024-08-22T14:27:40.846509Z",
            "url": "https://files.pythonhosted.org/packages/b3/fe/4683116e8d1dc14fcad19db22305a018f624d525c853c86d7ac9be7c8f81/llama_index_readers_mbox-0.2.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3416a290bd8b0c80a3b2f6812c799e0bd16c899a78e576ee73b0ec8a44185c11",
                "md5": "d397e39427e65746ff8f683f0eda1d6b",
                "sha256": "55e1b1bbc802a68d5b98c82074b614ade602941f7e28353e31aa33af95c2be10"
            },
            "downloads": -1,
            "filename": "llama_index_readers_mbox-0.2.0.tar.gz",
            "has_sig": false,
            "md5_digest": "d397e39427e65746ff8f683f0eda1d6b",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": "<4.0,>=3.8.1",
            "size": 2269,
            "upload_time": "2024-08-22T14:27:46",
            "upload_time_iso_8601": "2024-08-22T14:27:46.398649Z",
            "url": "https://files.pythonhosted.org/packages/34/16/a290bd8b0c80a3b2f6812c799e0bd16c899a78e576ee73b0ec8a44185c11/llama_index_readers_mbox-0.2.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-08-22 14:27:46",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "llama-index-readers-mbox"
}
        
Elapsed time: 0.61805s