{"id":21068469,"url":"https://github.com/matheusfillipe/mailinator","last_synced_at":"2025-10-24T11:27:51.228Z","repository":{"id":57439249,"uuid":"453497714","full_name":"matheusfillipe/mailinator","owner":"matheusfillipe","description":"A simple python wrapper for the Public mailinator websockets API","archived":false,"fork":false,"pushed_at":"2022-01-29T19:32:51.000Z","size":6,"stargazers_count":1,"open_issues_count":0,"forks_count":1,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-01-20T21:37:42.779Z","etag":null,"topics":["api","mailbox","mailinator","scraper"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/matheusfillipe.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2022-01-29T19:27:30.000Z","updated_at":"2023-06-21T18:14:29.000Z","dependencies_parsed_at":"2022-09-26T17:20:23.244Z","dependency_job_id":null,"html_url":"https://github.com/matheusfillipe/mailinator","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/matheusfillipe%2Fmailinator","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/matheusfillipe%2Fmailinator/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/matheusfillipe%2Fmailinator/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/matheusfillipe%2Fmailinator/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/matheusfillipe","download_url":"https://codeload.github.com/matheusfillipe/mailinator/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243510056,"owners_count":20302296,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["api","mailbox","mailinator","scraper"],"created_at":"2024-11-19T18:22:02.295Z","updated_at":"2025-10-24T11:27:51.152Z","avatar_url":"https://github.com/matheusfillipe.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Mailinator Public API\n\nPython wrapper for mailinator's public api. This library scrapes mailinator's websockets api and gives an abstraction layer for basic operations such as viewing the inbox, email's content and removing them.\n\nThis means that this will allow you to to view and remove emails from public inboxes of https://www.mailinator.com without the need of a headless browser. Notice there is a limit for removing emails.\n\n\n## Usage\n\nI hope it is simple enough.\n```python\nfrom mailinatorapi import PublicInbox\ninbox = PublicInbox(\"carlos\")\nprint(inbox.web_url)\n# Iterate over the emails and print some info\nfor email in inbox:\n    print(email.from_address)\n    print(email.from_name)\n    print(email.subject)\n    print(email.seconds_ago)\n    print(email.text)\n    print(email.html)\n    print([f\"{link.text}: {link.url}\" for link in email.links])\n\n# remove the last email\nemail = inbox.get_lastest_email()\nprint(email.from_address)\nok, msg = email.remove()\nif ok:\n    print(\"Removal successful! \", msg)\nelse:\n    print(\"Removal failed! \", msg)\n\n```\n\nYou can access the raw json response for the email object with `email.json`.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmatheusfillipe%2Fmailinator","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmatheusfillipe%2Fmailinator","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmatheusfillipe%2Fmailinator/lists"}