Skip to content

comagic/aiomandrill

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Aiomandrill is a Python API client for the Mandrill email as a platform service.

It is based on original Mandrill Python API library and aiohttp.

Examples:

import asyncio
import aiomandrill


@asyncio.coroutine
def main():
    m = aiomandrill.Mandrill('YOUR_API_KEY')
    pong = yield from m.users.ping()
    print(pong)


if __name__ == '__main__':
    loop = asyncio.get_event_loop()
    loop.run_until_complete(main())

TODO:

  • Write docs
  • Update aiohttp library to the latest version

About

Mandrill email as a platform service client library for python asyncio

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%