Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/reclosedev/lathermail_client
Python API client for lathermail SMTP server
https://github.com/reclosedev/lathermail_client
client python test-automation
Last synced: about 1 month ago
JSON representation
Python API client for lathermail SMTP server
- Host: GitHub
- URL: https://github.com/reclosedev/lathermail_client
- Owner: reclosedev
- License: mit
- Created: 2015-11-20T12:16:10.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2017-02-06T21:00:50.000Z (almost 8 years ago)
- Last Synced: 2024-12-17T02:30:28.192Z (about 1 month ago)
- Topics: client, python, test-automation
- Language: Python
- Size: 6.84 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
- License: LICENSE
Awesome Lists containing this project
README
.. image:: https://travis-ci.org/reclosedev/lathermail_client.svg?branch=master
:target: https://travis-ci.org/reclosedev/lathermail_client.. image:: https://coveralls.io/repos/reclosedev/lathermail_client/badge.svg?branch=master&service=github
:target: https://coveralls.io/github/reclosedev/lathermail_client?branch=masterlathermail_client
=================Python API client for `lathermail `_ SMTP server.
Usage:
.. code-block:: python
from lathermail_client import LathermailClient
user, password = "user", "password"
url = "http://127.0.0.0:5000/"client = LathermailClient(user, password, url)
print(client.get_inboxes())
print(client.get_messages(recipients_address="[email protected]"))
print(client.get_single_message("some_id"))