Este repositorio es para la API de Python TempMail.lol.
La biblioteca es completamente diferente a la versión 2.xx. Consulte Uso para obtener más información sobre los cambios en la biblioteca de Python.
Cambie a la nueva versión de la biblioteca si está utilizando una nueva clave API. Si todavía usa una ID de BananaCrumbs, debe usar la versión 2.
Puede instalar la API TempMail usando PIP:
pip install tempmail-lol
Si tiene una suscripción TempMail Plus o Ultra, puede usarla en la API. Consulte el uso a continuación. Si necesita ayuda, pregunte en nuestro servidor de Discord o envíenos un correo electrónico a [email protected].
No necesita una clave API para utilizar el nivel gratuito de TempMail .
from TempMail import TempMail
# Create a new TempMail object
tmp = TempMail ()
# If you have an API Key, use it here (you do not need an API key to use the free tier)
tmp = TempMail ( "tm.1234567890.randomcharactershere" )
# Generate an inbox with a random domain and prefix
inb = tmp . createInbox ()
# Or... use a prefix
inb = tmp . createInbox ( prefix = "joe" )
# Generate an inbox using a specific domain (you can also use your custom domain here)
# Prefixes on custom domains has no extra characters. For example, a custom domain example.com
# with a prefix of "whoever" will make "[email protected]". If you do not provide a prefix,
# a random one will be created for you.
inb = tmp . createInbox ( domain = "mycustomdomain.com" , prefix = "optional" )
# Check for emails (throws exception on invalid token)
emails = tmp . getEmails ( inb )
# Or... use the token (which is a string)
emails = tmp . getEmails ( inb . token )
print ( "Emails:" )
for email in emails :
print ( " t Sender: " + email . sender )
print ( " t Recipient: " + email . recipient )
print ( " t Subject: " + email . subject )
print ( " t Body: " + email . body )
print ( " t HTML: " + str ( email . html )) # may be None
print ( " t Date: " + str ( email . date )) # Unix timestamp in milliseconds
Tenga en cuenta que el token para las bandejas de entrada personalizadas se almacena en su dominio como un registro de texto con el nombre _tmpml
y un hash sha512.
Ver más detalles en account.tempmail.lol.