π¬ ByMail is a lightweight Python library to fetch inbox messages from temporary email providers. It validates domains and supports both one-shot and continuous (looping) fetching.
π Features
Multiple domains: Works with a curated set of temp-mail domains.
Simple API: Pass a full email string (e.g., name@mailto.plus).
Looping mode: Print incoming emails continuously (Loop=True).
One-shot mode: Get a list of emails to iterate yourself (Loop=False).
βοΈ Installation
pip install ByMail -U
π§ Usage Example
`from ByMail import Mail
One-shot: you iterate
m = Mail(Email="your-user@mailto.plus", Loop=False)
for mail in m.get_inboxes():
print(mail)
Looping: prints internally and blocks (Ctrl+C to stop)
m = Mail("your-user@mailto.plus", Loop=True)
m.get_inboxes()
β Supported Domains (
mailto.plus, fexpost.com, fexbox.org
mailbox.in.ua, rover.info, chitthi.in
fextemp.com, any.pink, merepost.com
)`
π¦ Version
v1.0.0 β Full email API, domain validation, loop/non-loop modes
β οΈ Note: Early version; improvements and more providers planned.
π¬ Help & Support .
Follow updates via the Telegram Channel (@PyCodz).
Top comments (0)