Metadata-Version: 2.1
Name: redbox
Version: 0.1.0
Summary: Email box managing library
Home-page: https://github.com/Miksus/red-box.git
Author: Mikael Koli
Author-email: koli.mikael@gmail.com
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Topic :: Communications :: Email
Classifier: Operating System :: OS Independent
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Customer Service
Classifier: Intended Audience :: Financial and Insurance Industry
Requires-Python: >=3.6.0
Description-Content-Type: text/markdown
License-File: LICENSE


# Red Box: Advanced Email Manager (UNDER DEVELOPMENT)
> Next generation email box manager

---

[![Pypi version](https://badgen.net/pypi/v/redmail)](https://pypi.org/project/redbox/)
[![build](https://github.com/Miksus/red-mail/actions/workflows/main.yml/badge.svg?branch=master)](https://github.com/Miksus/red-box/actions/workflows/main.yml)
[![codecov](https://codecov.io/gh/Miksus/red-mail/branch/master/graph/badge.svg?token=IMR1CQT9PY)](https://codecov.io/gh/Miksus/red-box)
[![Documentation Status](https://readthedocs.org/projects/red-mail/badge/?version=latest)](https://red-box.readthedocs.io/en/latest/)
[![PyPI pyversions](https://badgen.net/pypi/python/redmail)](https://pypi.org/project/redmail/)


## What is it?
Red Box is an advanced email reader library. It is a sister project for Red Mail (advanced email sender).

Install it from PyPI:

```shell
pip install redbox
```

## Why Red Box?

Imaplib from standard library is complex to use and unintuitive. 
Red Box makes reading email boxes easy. 

With Red Box, it is simple as this:

```python
from redmail import EmailSender

box = EmailBox(host="localhost", port=0)

emails = box.search(
    since="2022-01-01",
    sender="you@example.com"
)
```

---

## Author

* **Mikael Koli** - [Miksus](https://github.com/Miksus) - koli.mikael@gmail.com

