Easy and efficient messaging.


Keywords
api, api-wrapper, automation, beginner-friendly, cli, email, python3, slack, smtp, telegram, tool, tools, twilio, whatsapp, wiki
License
MIT
Install
pip install messages==0.8.0

Documentation

Messages: Create and send messages fast!

PyPI version Coverage Status

messages_words

Purpose

  • Messages is a package designed to make sending messages easy and efficient!
  • Messages intends to be a lightweight package with minimal dependencies.
  • Messages with a consistent API across all message types.

Installation

Python3 only

$ pip install messages

Documentation in the Wiki

Supported Messages

Examples

Email

>>> from messages import Email
>>> msg = 'Hello,\n\tBuy more Bitcoin!'
>>> m = Email(
            from_='me@here.com',
            to='you@there.com',
            auth='p@ssw0rd',       
            body=msg,
            attachments=['./file1.txt', '~/Documents/file2.pdf'],
   )
>>>
>>> m.send()        
Message sent...

Read the Wiki for more examples

Contributing Code

  • Help Wanted!
  • All contributions are welcome to build upon the package!
  • If it's a message, add it to messages!
  • Read the Wiki for guidelines.