Skip to main content

Async IMAP client for streaming email messages

Project description

Mailstream

Overview

MailStream is an asynchronous IMAP email client built with aioimaplib. It supports streaming emails, polling for updates, and broadcasting new emails to listeners.

Features

  • Asynchronous IMAP connection
  • Fetch unseen emails
  • Broadcast new emails to subscribers
  • Easily integrate with context management

Installation

pip install mailstream

Quick Start

import asyncio
from mailstream import MailStreamClient, Config

async def process_email(mail):
    print(f"New email from: {mail.from_email}")
    print(f"Subject: {mail.subject}")

config = Config(
    host="imap.example.com",
    port=993,
    email="your_email@example.com",
    password="your_password",
    debug=True
)

async def main():
    client = MailStreamClient(config)
    await client.connect()

    # Start wait_for_updates in the background
    asyncio.create_task(client.wait_for_updates())

    # Subscribe to new emails
    listener = client.subscribe()
    
    # Process emails from listener
    while True:
        mail = await listener.get()
        await process_email(mail)

    # Close connection
    await client.close()

asyncio.run(main())

Configuration Options

  • host: IMAP server hostname (required)
  • email: Login email (required)
  • password: Login password (required)
  • port: IMAP server port (default: 993)
  • mailbox: Target mailbox (default: 'INBOX')
  • debug: Enable debug mode (default: False)

Advanced Usage

Fetching Unseen Mails

# Retrieve all unseen emails
unseen_mails = client.get_unseen_mails()
for mail in unseen_mails:
    print(mail.subject)

Multiple Listeners

async def listener1(mail):
    print("Listener 1 received:", mail.subject)

async def listener2(mail):
    print("Listener 2 received:", mail.subject)

listener1_queue = client.subscribe()
listener2_queue = client.subscribe()

Waiting for New Emails

await client.wait_for_updates()

Examples

For more examples, including advanced usage, please see the examples directory.

Error Handling

from mailstream import ConnectionError, AuthenticationError

try:
    client = MailStreamClient(
        host='imap.example.com',
        port=993,
        email='your_email@example.com',
        password='your_password',
        debug=True
    )
    await client.connect()
except (ConnectionError, AuthenticationError) as e:
    print(f"Connection failed: {e}")

Contributing

Contributions are welcome! Please see our contributing guidelines for more details.

License

MIT

Support

For issues, please open a GitHub issue in the repository.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

mailstream-0.1.6.tar.gz (10.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

mailstream-0.1.6-py3-none-any.whl (7.9 kB view details)

Uploaded Python 3

File details

Details for the file mailstream-0.1.6.tar.gz.

File metadata

  • Download URL: mailstream-0.1.6.tar.gz
  • Upload date:
  • Size: 10.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for mailstream-0.1.6.tar.gz
Algorithm Hash digest
SHA256 6bb048942cc6a7687cbc638781741ad9fe740c03bd861dfc0c9a3b7a4db4281b
MD5 0e56bb5add08e18fc6ad8a263c16f015
BLAKE2b-256 8f1c9bb72342f937889708b2d6a45eadc07f2731ec5fec8e997ab2862932fb80

See more details on using hashes here.

Provenance

The following attestation bundles were made for mailstream-0.1.6.tar.gz:

Publisher: python-publish.yml on christianobora/mailstream

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mailstream-0.1.6-py3-none-any.whl.

File metadata

  • Download URL: mailstream-0.1.6-py3-none-any.whl
  • Upload date:
  • Size: 7.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for mailstream-0.1.6-py3-none-any.whl
Algorithm Hash digest
SHA256 c134bbaf4565c35a608cfdd27611b67a6cc9b54eefef76ecfd151322ed4db95b
MD5 8e3859a3b9bc4fac60c76bc041112bdb
BLAKE2b-256 5a3f50a36a7160d4e06c894c75dfa5532f78515af64a53fabc1481d4d7a84289

See more details on using hashes here.

Provenance

The following attestation bundles were made for mailstream-0.1.6-py3-none-any.whl:

Publisher: python-publish.yml on christianobora/mailstream

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page