llama-index-readers-mbox


Namellama-index-readers-mbox JSON
Version 0.4.0 PyPI version JSON
download
home_pageNone
Summaryllama-index readers mbox integration
upload_time2024-11-18 01:00:47
maintainerminosvasilias
docs_urlNone
authorYour Name
requires_python<4.0,>=3.9
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.9",
    "maintainer_email": null,
    "keywords": null,
    "author": "Your Name",
    "author_email": "you@example.com",
    "download_url": "https://files.pythonhosted.org/packages/43/30/55fd9128e7f1f6ac83bb3d027f44a692b6579098fe4896947b8ec84aaccf/llama_index_readers_mbox-0.4.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.4.0",
    "project_urls": null,
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b1e7c746330667ca1bb30a9f1f86c575fe74471c4a7c4ec46dd8b19efa0c931b",
                "md5": "e73ae6a9336ca63aa507b05b72459dd9",
                "sha256": "6c8493c2636991bef81b327ae6654f48a59c29ae4115219a83a33e9d28516062"
            },
            "downloads": -1,
            "filename": "llama_index_readers_mbox-0.4.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "e73ae6a9336ca63aa507b05b72459dd9",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": "<4.0,>=3.9",
            "size": 2479,
            "upload_time": "2024-11-18T01:00:46",
            "upload_time_iso_8601": "2024-11-18T01:00:46.122550Z",
            "url": "https://files.pythonhosted.org/packages/b1/e7/c746330667ca1bb30a9f1f86c575fe74471c4a7c4ec46dd8b19efa0c931b/llama_index_readers_mbox-0.4.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "433055fd9128e7f1f6ac83bb3d027f44a692b6579098fe4896947b8ec84aaccf",
                "md5": "4aad9bc769adc134bbd3c1b0ca29b5bf",
                "sha256": "a3d30918c0d520c729607b84423f7812284751025b4b8d1c9a24cc006340c62a"
            },
            "downloads": -1,
            "filename": "llama_index_readers_mbox-0.4.0.tar.gz",
            "has_sig": false,
            "md5_digest": "4aad9bc769adc134bbd3c1b0ca29b5bf",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": "<4.0,>=3.9",
            "size": 2239,
            "upload_time": "2024-11-18T01:00:47",
            "upload_time_iso_8601": "2024-11-18T01:00:47.758406Z",
            "url": "https://files.pythonhosted.org/packages/43/30/55fd9128e7f1f6ac83bb3d027f44a692b6579098fe4896947b8ec84aaccf/llama_index_readers_mbox-0.4.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-11-18 01:00:47",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "llama-index-readers-mbox"
}
        
Elapsed time: 0.41075s