
Security News
Open Source CAI Framework Handles Pen Testing Tasks up to 3,600× Faster Than Humans
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.
A Python client for interacting with the CyberTemp temporary email service API.
🌐 Website
·
📜 ChangeLog
·
⚠️ Report Bug
pip install cybertemp
from cybertemp import CyberTemp
# Initialize (free tier, optional debug mode)
client = CyberTemp(debug=True)
# Or with API key (premium, optional)
client = CyberTemp(api_key="your_api_key_here")
# Get available domains
domains = client.get_domains()
# Check mailbox with retry settings (optional parameters: max_retries, delay_between_retries)
emails = client.get_email_content("test@cybertemp.xyz", max_retries=3, delay_between_retries=2.0)
You can purchase an API key here: CyberTemp Pricing
client = CyberTemp(
debug=True, # Optional: Enable debug logging
api_key=None # Optional: API key for premium features
)
emails = client.get_email_content("test@cybertemp.xyz", max_retries=3, delay_between_retries=2.0) # Optional: max_retries, delay_between_retries
email = client.get_email_content_by_id("email_id_here")
domains = client.get_domains()
mail_id = client.get_mail_by_subject(
email="test@cybertemp.xyz",
subject_contains="Verification",
max_attempts=5, # Optional
delay_between_retries=1.5 # Optional
)
url = client.extract_url_from_message(
email="test@cybertemp.xyz",
subject_contains="Verification",
url_pattern=r'https://[^\s<>"]+',
max_attempts=5, # Optional
delay_between_retries=1.5 # Optional
)
balance = client.get_balance()
v1.0.1 ⋮ 2025-03-05
+ Added configurable retry and delay options for email checking functions
+ Indicated optional parameters in documentation
v1.0.0 ⋮ 2025-02-14
! Initial release
FAQs
A Python wrapper for the CyberTemp temporary email service API
We found that cybertemp demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.
Security News
Deno 2.4 brings back bundling, improves dependency updates and telemetry, and makes the runtime more practical for real-world JavaScript projects.
Security News
CVEForecast.org uses machine learning to project a record-breaking surge in vulnerability disclosures in 2025.