H7AM0 / GmailBox

Using this library, you can create a random temporary Gmail and receive messages.
https://pypi.org/project/GmailBox/
MIT License
9 stars 3 forks source link

GmailBox

Using this library, you can create a random temporary Gmail and receive messages.

Install :

pip install -U GmailBox

How to use?

Gmail = GmailBox()

Create a new gmail

New_Gmail = Gmail.new_email() email = New_Gmail.email print(email)

Start checking the inbox

inbox = Gmail.inbox(email)

If there are messages in the inbox, print them

if inbox: for message in inbox: print("=" 21) print(message) print("=" 21)

If no messages were received, print a message

else: print(f' [!] No messages were received.')

- Here an async example:
```python
from GmailBox.asyncio import GmailBox
import asyncio

# Define the main function
async def main():
    Gmail = GmailBox()

    # Create a new gmail
    New_Gmail = await Gmail.new_email()
    email = New_Gmail.email
    print(email)

    # Start checking the inbox
    inbox = await Gmail.inbox(email)

    # If there are messages in the inbox, print them
    if inbox:
        for message in inbox:
            print("=" * 21)
            print(message)
        print("=" * 21)
    # If no messages were received, print a message
    else:
        print(f' [!] No messages were received.')

# Run the main function
asyncio.run(main())

On Pypi