/hotmailbox.py

An API wrapper for hotmailbox.me written in Python.

Primary LanguagePythonGNU Affero General Public License v3.0AGPL-3.0

hotmailbox.py

📧 Use hotmailbox.me quickly and efficiently


⭐ star the repo pls <3

Support + Community

Discord Server | Telegram Chat | Website

Features:

  • Purchase Emails in Different Quantities
  • Fetch Verification Codes/Links
  • Check Balance and Stock

Installation

Using PyPi:

python3 -m pip install hotmailbox.py

Using GitHub Source

python3 -m pip install git+https://github.com/itschasa/hotmailbox.py

Example

# Import the hotmailbox library
import hotmailbox

# Fetch the stock for hotmailbox
stock = hotmailbox.stock()

# Print the price and stock amount for Hotmail emails
print(stock['HOTMAIL']['Price'])
print(stock['HOTMAIL']['Stock'])

# Create a user class
user = hotmailbox.User("api_key")

# Purchase a Hotmail email
emails = user.purchase("HOTMAIL", 1)

# Get the first entry from the list of emails,
# and print the "email" and "password" of it
print(emails[0].email)
print(emails[0].password)

# Fetch and print verification link from Discord
print(emails[0].discord())