catdns

Create tempmail based on https://catdns.in :D


License
MIT
Install
pip install catdns==2.0

Documentation

Install :

pip install -U catway

How to use :

  • 1 - Send email to your custom email, for example: sadf@catway.org
  • 2 - Get inbox:
from catway import CatMail

def main():
    with CatMail("sadf@catway.org") as email:
        for mail in email.get_inboxes():
            print(mail)
            print(email.get_inbox(mail.id))

main()