This is an unofficial API for interacting with the Xitroo email service. The API provides a set of Python classes and methods to manage email addresses, retrieve and send emails, handle inboxes, solve captchas, and more.
To install this package, clone the repository and install the required dependencies:
pip install unofficial-xitroo-api
Here's a brief example to get you started:
from xitroo import Xitroo
# Generate mail
email = Xitroo.generate()
print(email)
# Initialize the Xitroo object
xitroo = Xitroo("your-email@xitroo.com")
# Get the inbox
inbox = xitroo.Inbox()
# Get the latest email
latest_mail = xitroo.getLatestMail()
print(latest_mail.getBodyText())
# Print code form latest email
print(Xitroo.getCode(latest_mail))
The main class to interact with the Xitroo API. It includes methods for managing email addresses, headers, sessions, and performing various email operations.
Represents an email. It provides methods to retrieve email content, attachments, and metadata.
Represents an inbox. It provides methods to retrieve emails and inbox information.
Provides methods to search the inbox by different criteria such as date, sender, title, and text in the body.
Handles captcha-related operations including retrieving and verifying captchas.
For detailed documentation, please refer to the HTML documentation in the docs folder.
We welcome contributions! Please fork the repository and submit pull requests.
This project is licensed under the MIT License. See the LICENSE file for details.