tempemail-sdk 1.2.2.dev0__tar.gz → 1.2.4__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {tempemail_sdk-1.2.2.dev0 → tempemail_sdk-1.2.4}/PKG-INFO +42 -14
- {tempemail_sdk-1.2.2.dev0 → tempemail_sdk-1.2.4}/README.md +41 -13
- {tempemail_sdk-1.2.2.dev0 → tempemail_sdk-1.2.4}/pyproject.toml +1 -1
- {tempemail_sdk-1.2.2.dev0 → tempemail_sdk-1.2.4}/tempemail_sdk.egg-info/PKG-INFO +42 -14
- {tempemail_sdk-1.2.2.dev0 → tempemail_sdk-1.2.4}/tempemail_sdk.egg-info/SOURCES.txt +25 -5
- {tempemail_sdk-1.2.2.dev0 → tempemail_sdk-1.2.4}/tempmail_sdk/__init__.py +1 -1
- tempemail_sdk-1.2.4/tempmail_sdk/client.py +563 -0
- {tempemail_sdk-1.2.2.dev0 → tempemail_sdk-1.2.4}/tempmail_sdk/http.py +28 -4
- {tempemail_sdk-1.2.2.dev0 → tempemail_sdk-1.2.4}/tempmail_sdk/normalize.py +16 -0
- tempemail_sdk-1.2.4/tempmail_sdk/providers/catchmail.py +126 -0
- tempemail_sdk-1.2.4/tempmail_sdk/providers/email10min.py +187 -0
- tempemail_sdk-1.2.4/tempmail_sdk/providers/etempmail.py +151 -0
- tempemail_sdk-1.2.4/tempmail_sdk/providers/fakemail.py +132 -0
- tempemail_sdk-1.2.4/tempmail_sdk/providers/getnada.py +117 -0
- {tempemail_sdk-1.2.2.dev0 → tempemail_sdk-1.2.4}/tempmail_sdk/providers/guerrillamail.py +29 -11
- tempemail_sdk-1.2.4/tempmail_sdk/providers/guerrillamail_mirrors.py +120 -0
- tempemail_sdk-1.2.4/tempmail_sdk/providers/harakirimail.py +97 -0
- tempemail_sdk-1.2.4/tempmail_sdk/providers/inboxes.py +106 -0
- tempemail_sdk-1.2.4/tempmail_sdk/providers/inboxkitten.py +114 -0
- tempemail_sdk-1.2.4/tempmail_sdk/providers/linshi_co.py +15 -0
- tempemail_sdk-1.2.4/tempmail_sdk/providers/mail123.py +82 -0
- tempemail_sdk-1.2.4/tempmail_sdk/providers/mail_cx.py +174 -0
- tempemail_sdk-1.2.4/tempmail_sdk/providers/mail_xiuvi.py +15 -0
- tempemail_sdk-1.2.4/tempmail_sdk/providers/mailforspam.py +105 -0
- tempemail_sdk-1.2.4/tempmail_sdk/providers/mailnesia.py +139 -0
- {tempemail_sdk-1.2.2.dev0 → tempemail_sdk-1.2.4}/tempmail_sdk/providers/mffac.py +40 -1
- {tempemail_sdk-1.2.2.dev0 → tempemail_sdk-1.2.4}/tempmail_sdk/providers/minmail.py +45 -13
- tempemail_sdk-1.2.4/tempmail_sdk/providers/mjj_cm.py +15 -0
- {tempemail_sdk-1.2.2.dev0 → tempemail_sdk-1.2.4}/tempmail_sdk/providers/moakt.py +31 -6
- tempemail_sdk-1.2.4/tempmail_sdk/providers/one_sec_mail.py +112 -0
- tempemail_sdk-1.2.4/tempmail_sdk/providers/openinbox.py +96 -0
- {tempemail_sdk-1.2.2.dev0 → tempemail_sdk-1.2.4}/tempmail_sdk/providers/smail_pw.py +124 -1
- tempemail_sdk-1.2.4/tempmail_sdk/providers/socketio_mail.py +226 -0
- tempemail_sdk-1.2.4/tempmail_sdk/providers/temp_mail_io.py +94 -0
- {tempemail_sdk-1.2.2.dev0 → tempemail_sdk-1.2.4}/tempmail_sdk/providers/tempmail_cn.py +31 -9
- tempemail_sdk-1.2.4/tempmail_sdk/providers/tempmail_lol_v2.py +61 -0
- tempemail_sdk-1.2.4/tempmail_sdk/providers/tempmail_plus.py +101 -0
- tempemail_sdk-1.2.4/tempmail_sdk/providers/tempmailc.py +78 -0
- tempemail_sdk-1.2.4/tempmail_sdk/providers/tempmailo.py +112 -0
- {tempemail_sdk-1.2.2.dev0 → tempemail_sdk-1.2.4}/tempmail_sdk/providers/tenminute_one.py +1 -2
- tempemail_sdk-1.2.4/tempmail_sdk/providers/throwawaymail.py +91 -0
- tempemail_sdk-1.2.4/tempmail_sdk/providers/twentyfourmail_chacuo.py +90 -0
- tempemail_sdk-1.2.4/tempmail_sdk/providers/uncorreotemporal.py +97 -0
- {tempemail_sdk-1.2.2.dev0 → tempemail_sdk-1.2.4}/tempmail_sdk/providers/vip_215.py +267 -202
- {tempemail_sdk-1.2.2.dev0 → tempemail_sdk-1.2.4}/tempmail_sdk/telemetry.py +11 -7
- {tempemail_sdk-1.2.2.dev0 → tempemail_sdk-1.2.4}/tempmail_sdk/types.py +37 -9
- tempemail_sdk-1.2.2.dev0/tempmail_sdk/client.py +0 -381
- tempemail_sdk-1.2.2.dev0/tempmail_sdk/providers/linshi_email.py +0 -85
- tempemail_sdk-1.2.2.dev0/tempmail_sdk/providers/linshi_token.py +0 -87
- tempemail_sdk-1.2.2.dev0/tempmail_sdk/providers/mail_cx.py +0 -151
- tempemail_sdk-1.2.2.dev0/tempmail_sdk/providers/temp_mail_io.py +0 -87
- tempemail_sdk-1.2.2.dev0/tempmail_sdk/providers/tempmailg.py +0 -197
- tempemail_sdk-1.2.2.dev0/tempmail_sdk/providers/temporary_email_org.py +0 -70
- tempemail_sdk-1.2.2.dev0/tempmail_sdk/providers/tenmail_wangtz.py +0 -118
- {tempemail_sdk-1.2.2.dev0 → tempemail_sdk-1.2.4}/setup.cfg +0 -0
- {tempemail_sdk-1.2.2.dev0 → tempemail_sdk-1.2.4}/tempemail_sdk.egg-info/dependency_links.txt +0 -0
- {tempemail_sdk-1.2.2.dev0 → tempemail_sdk-1.2.4}/tempemail_sdk.egg-info/requires.txt +0 -0
- {tempemail_sdk-1.2.2.dev0 → tempemail_sdk-1.2.4}/tempemail_sdk.egg-info/top_level.txt +0 -0
- {tempemail_sdk-1.2.2.dev0 → tempemail_sdk-1.2.4}/tempmail_sdk/config.py +0 -0
- {tempemail_sdk-1.2.2.dev0 → tempemail_sdk-1.2.4}/tempmail_sdk/logger.py +0 -0
- {tempemail_sdk-1.2.2.dev0 → tempemail_sdk-1.2.4}/tempmail_sdk/providers/__init__.py +0 -0
- {tempemail_sdk-1.2.2.dev0 → tempemail_sdk-1.2.4}/tempmail_sdk/providers/anonbox.py +0 -0
- {tempemail_sdk-1.2.2.dev0 → tempemail_sdk-1.2.4}/tempmail_sdk/providers/awamail.py +0 -0
- {tempemail_sdk-1.2.2.dev0 → tempemail_sdk-1.2.4}/tempmail_sdk/providers/boomlify.py +0 -0
- {tempemail_sdk-1.2.2.dev0 → tempemail_sdk-1.2.4}/tempmail_sdk/providers/chatgpt_org_uk.py +0 -0
- {tempemail_sdk-1.2.2.dev0 → tempemail_sdk-1.2.4}/tempmail_sdk/providers/dropmail.py +0 -0
- {tempemail_sdk-1.2.2.dev0 → tempemail_sdk-1.2.4}/tempmail_sdk/providers/emailnator.py +0 -0
- {tempemail_sdk-1.2.2.dev0 → tempemail_sdk-1.2.4}/tempmail_sdk/providers/fake_legal.py +0 -0
- {tempemail_sdk-1.2.2.dev0 → tempemail_sdk-1.2.4}/tempmail_sdk/providers/linshiyou.py +0 -0
- {tempemail_sdk-1.2.2.dev0 → tempemail_sdk-1.2.4}/tempmail_sdk/providers/mail_gw.py +0 -0
- {tempemail_sdk-1.2.2.dev0 → tempemail_sdk-1.2.4}/tempmail_sdk/providers/mail_tm.py +0 -0
- {tempemail_sdk-1.2.2.dev0 → tempemail_sdk-1.2.4}/tempmail_sdk/providers/maildrop.py +0 -0
- {tempemail_sdk-1.2.2.dev0 → tempemail_sdk-1.2.4}/tempmail_sdk/providers/ta_easy.py +0 -0
- {tempemail_sdk-1.2.2.dev0 → tempemail_sdk-1.2.4}/tempmail_sdk/providers/tempmail.py +0 -0
- {tempemail_sdk-1.2.2.dev0 → tempemail_sdk-1.2.4}/tempmail_sdk/providers/tempmail_lol.py +0 -0
- {tempemail_sdk-1.2.2.dev0 → tempemail_sdk-1.2.4}/tempmail_sdk/providers/tmpmails.py +0 -0
- {tempemail_sdk-1.2.2.dev0 → tempemail_sdk-1.2.4}/tempmail_sdk/retry.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: tempemail-sdk
|
|
3
|
-
Version: 1.2.
|
|
3
|
+
Version: 1.2.4
|
|
4
4
|
Summary: 临时邮箱 SDK,所有渠道返回统一标准化格式
|
|
5
5
|
License: GPL-3.0
|
|
6
6
|
Requires-Python: >=3.10
|
|
@@ -15,7 +15,7 @@ Requires-Dist: pygments>=2.19.2; extra == "dev"
|
|
|
15
15
|
|
|
16
16
|
[](https://www.gnu.org/licenses/gpl-3.0)
|
|
17
17
|
|
|
18
|
-
临时邮箱 SDK(Python),支持 **
|
|
18
|
+
临时邮箱 SDK(Python),支持 **55** 个邮箱服务提供商,顺序与 `client.py` 中 `ALL_CHANNELS` 一致,返回格式与根目录 README 描述一致,并与 Go / npm / Rust / C 对齐。
|
|
19
19
|
|
|
20
20
|
## 安装
|
|
21
21
|
|
|
@@ -33,31 +33,59 @@ pip install https://github.com/XxxXTeam/tempmail-sdk/releases/latest/download/te
|
|
|
33
33
|
|------|--------|:----------:|------|
|
|
34
34
|
| `tempmail` | tempmail.ing | - | 支持自定义有效期 |
|
|
35
35
|
| `tempmail-cn` | tempmail.cn | - | Socket.IO:`request shortid` / `set shortid` / `mail`;`GenerateEmailOptions.domain` 可指定自定义接入域名 |
|
|
36
|
-
| `tmpmails` | tmpmails.com | ✅ | Next.js Server Action 收信;`domain` 可选语言路径 |
|
|
37
|
-
| `tempmailg` | tempmailg.com | ✅ | 独立 `requests.Session` 建邮;`GET /public/{locale}` + `POST /public/get_messages`;Token `tmg1:` + Base64(JSON);`domain` 可选语言路径 |
|
|
38
36
|
| `ta-easy` | ta-easy.com | ✅ | REST `api-endpoint.ta-easy.com` |
|
|
39
|
-
| `10mail-wangtz` | 10mail.wangtz.cn | - | REST `/api/tempMail`、`/api/emailList`;**默认跳过 TLS 证书校验** |
|
|
40
37
|
| `10minute-one` | 10minutemail.one | ✅ | SSR / JWT + Web API;`GenerateEmailOptions.domain` 可选 |
|
|
41
|
-
| `linshi-email` | linshi-email.com | - | |
|
|
42
38
|
| `linshiyou` | linshiyou.com | ✅ | `NEXUS_TOKEN` + Cookie;HTML 分段解析 |
|
|
43
|
-
| `mffac` | mffac.com | ✅ | mailbox `id`;REST 24h |
|
|
39
|
+
| `mffac` | mffac.com | ✅ | mailbox `id`;`/api/emails/{id}` 详情补齐 `text` / `html`;REST 24h |
|
|
44
40
|
| `tempmail-lol` | tempmail.lol | ✅ | 支持指定域名 |
|
|
45
41
|
| `chatgpt-org-uk` | mail.chatgpt.org.uk | ✅ | Inbox Token 等由 SDK 封装 |
|
|
46
|
-
| `temp-mail-io` | temp-mail.io |
|
|
42
|
+
| `temp-mail-io` | temp-mail.io | ✅ | REST:动态读取 `mobileTestingHeader` 后调用 `api.internal.temp-mail.io/api/v3` |
|
|
43
|
+
| `mail-cx` | mail.cx | ✅ | 匿名 Web API:`/v1/config` 获取系统域名,`/v1/inbox/{email}` 长轮询收信,内部保存 `X-Client-ID` |
|
|
44
|
+
| `catchmail` | catchmail.io | - | 公开 REST:`/api/v1/mailbox?address=` + `/api/v1/message/{id}?mailbox=`;详情含 `body.text` / `body.html` |
|
|
45
|
+
| `catchmail-mailistry` | mailistry.com | - | Catchmail API 固定域名 `mailistry.com` |
|
|
46
|
+
| `catchmail-zeppost` | zeppost.com | - | Catchmail API 固定域名 `zeppost.com` |
|
|
47
|
+
| `mailforspam` | mailforspam.com | - | 公开 REST:`/api/mailboxes/{email}/emails` + `/api/mailboxes/{email}/emails/{id}`;详情含 `body_text` / `body_html` |
|
|
48
|
+
| `mailforspam-tempmail-io` | tempmail.io | - | MailForSpam API 固定域名 `tempmail.io` |
|
|
49
|
+
| `mailforspam-disposable` | disposable.email | - | MailForSpam API 固定域名 `disposable.email` |
|
|
50
|
+
| `tempmailo` | tempmailo.com | ✅ | `GET /changemail` 建址,`POST /` 传 `mail` 拉信;返回对象直接含 `text` / `html` |
|
|
51
|
+
| `tempmailc` | tempmailc.com | - | Public API:`GET /api/v1/new` 建址,`GET /api/v1/inbox` 拉列表,`GET /api/v1/message` 读取 `text` / `html` 正文 |
|
|
52
|
+
| `mailnesia` | mailnesia.com | - | 任意 `{local}@mailnesia.com` 建址;HTML 列表 `tr.emailheader` + 详情 `text_plain_{id}` / `text_html_{id}` 正文 |
|
|
53
|
+
| `throwawaymail` | throwawaymail.app | ✅ | Web API 建址并轮询收信;Token 由 SDK 内部维护 |
|
|
54
|
+
| `inboxkitten` | inboxkitten.com | - | 公开 API 拉取收件箱列表与详情 |
|
|
55
|
+
| `getnada` | getnada.net | ✅ | `POST /api/inbox/open` 建箱;`GET /api/inbox/messages` 列表;`GET /api/inbox/message` 详情含 `text_plain` / `html_sanitized` |
|
|
56
|
+
| `mail123` | mail123.fr | - | `GET /api/v1/mailbox/new` 建址;`GET /api/v1/mailbox/{address}/messages?limit=50` 列表;详情含 `text` / `html` |
|
|
57
|
+
| `1sec-mail` | 1sec-mail.com | ✅ | CSRF + Cookie;`POST /get_messages` 拉列表;详情由 `content` / `html` 映射,缺失正文由 normalize 反向生成 |
|
|
58
|
+
| `fakemail` | fakemail.net | ✅ | `/index/index` 建址,`/index/refresh` 拉列表,`/index/email` 详情;`telo` HTML 正文 |
|
|
59
|
+
| `openinbox` | openinbox.io | ✅ | `POST /api/inbox` 建箱;`GET /emails/inbox/{id}` 列表;`GET /emails/{emailId}` 详情含 `textBody` / `htmlBody` |
|
|
60
|
+
| `inboxes` | inboxes.com | - | 公开 v2:`GET /api/v2/domain` 域名,`GET /api/v2/inbox/{email}` 列表,`GET /api/v2/message/{uid}` 详情含 `text` / `html` |
|
|
61
|
+
| `uncorreotemporal` | uncorreotemporal.com | ✅ | `POST /api/v1/mailboxes` 建箱;`X-Session-Token` 拉取列表和详情;详情含 `body_text` / `body_html` |
|
|
47
62
|
| `awamail` | awamail.com | ✅ | Session Cookie 自动管理 |
|
|
48
|
-
| `temporary-email-org` | temporary-email.org | ✅ | `GET /zh/messages` Cookie + XHR 收信 |
|
|
49
63
|
| `mail-tm` | mail.tm | ✅ | 自动注册账号获取 Bearer Token |
|
|
50
|
-
| `mail-cx` | mail.cx | ✅ | `api.mail.cx` OpenAPI;`GenerateEmailOptions.domain` 可选 |
|
|
51
64
|
| `dropmail` | dropmail.me | ✅ | GraphQL API |
|
|
52
65
|
| `guerrillamail` | guerrillamail.com | ✅ | 公开 JSON API |
|
|
66
|
+
| `guerrillamail-com` | guerrillamail.com | ✅ | GuerrillaMail 裸域 JSON API 入口 |
|
|
53
67
|
| `maildrop` | maildrop.cx | ✅ | REST:`suffixes.php` + `emails.php`;`description`→`text` |
|
|
54
68
|
| `smail-pw` | smail.pw | ✅ | `__session` Cookie;正则 + JSON 遍历解析 Flight 中的邮件行对象 |
|
|
55
|
-
| `boomlify` | boomlify.com | - | `domains/public` + `emails/public/create`;地址 `{UUID}@{域名}` |
|
|
56
|
-
| `minmail` | minmail.app | ✅ | `visitor-id` / `ck` 等序列化在 token(JSON) |
|
|
57
69
|
| `vip-215` | vip.215.im | ✅ | `POST` 建箱 + WebSocket;无正文时 synthetic 兜底 |
|
|
58
|
-
| `anonbox` | anonbox.net | ✅ | `GET /en/` 解析 HTML + mbox 收信 |
|
|
59
70
|
| `fake-legal` | fake.legal | - | `/api/domains` + `/api/inbox/new`;可选 `GenerateEmailOptions.domain` |
|
|
60
71
|
| `moakt` | moakt.com | ✅ | HTML 收件箱 + `tm_session`;`domain` 可选语言路径;独立 `requests` 请求避免污染全局 Session Cookie |
|
|
72
|
+
| `email10min` | email10min.com | ✅ | Cookie + CSRF;`POST /messages` 获取邮箱与邮件 |
|
|
73
|
+
| `mjj-cm` | mjj.cm | ✅ | Socket.IO:`request shortid` / `set shortid` / `mail` |
|
|
74
|
+
| `linshi-co` | linshi.co | ✅ | Socket.IO 克隆站,协议同 `mjj-cm` |
|
|
75
|
+
| `harakirimail` | harakirimail.com | - | 公开 REST:`GET /api/v1/inbox/{name}` + `GET /api/v1/email/{id}` |
|
|
76
|
+
| `tempmail-plus` | tempmail.plus | - | 公开 REST:`GET /api/mails/?email=` 列表,`GET /api/mails/{id}?email=` 详情 |
|
|
77
|
+
| `mail-gw` | mail.gw | ✅ | 自动注册账号获取 Bearer Token |
|
|
78
|
+
| `tempmail-lol-v2` | tempmail.lol | ✅ | `GET /generate` 返回 address+token,`GET /auth/{token}` 拉取收件箱 |
|
|
79
|
+
| `sharklasers` | sharklasers.com | ✅ | GuerrillaMail 镜像,API 与 `guerrillamail` 相同 |
|
|
80
|
+
| `sharklasers-com` | sharklasers.com | ✅ | GuerrillaMail 裸域镜像,API 与 `guerrillamail` 相同 |
|
|
81
|
+
| `grr-la` | grr.la | ✅ | GuerrillaMail 镜像,API 与 `guerrillamail` 相同 |
|
|
82
|
+
| `grr-la-com` | grr.la | ✅ | GuerrillaMail 裸域镜像,API 与 `guerrillamail` 相同 |
|
|
83
|
+
| `guerrillamail-info` | guerrillamail.info | ✅ | GuerrillaMail 镜像,API 与 `guerrillamail` 相同 |
|
|
84
|
+
| `spam4me` | spam4.me | ✅ | GuerrillaMail 镜像,API 与 `guerrillamail` 相同 |
|
|
85
|
+
| `guerrillamail-net` | guerrillamail.net | ✅ | GuerrillaMail 镜像,API 与 `guerrillamail` 相同 |
|
|
86
|
+
| `guerrillamail-org` | guerrillamail.org | ✅ | GuerrillaMail 镜像,API 与 `guerrillamail` 相同 |
|
|
87
|
+
| `guerrillamailblock` | guerrillamailblock.com | ✅ | GuerrillaMail 镜像,API 与 `guerrillamail` 相同 |
|
|
88
|
+
| `guerrillamail-com-www` | guerrillamail.com | ✅ | GuerrillaMail `www` JSON API 入口 |
|
|
61
89
|
|
|
62
90
|
## 快速开始
|
|
63
91
|
|
|
@@ -147,7 +175,7 @@ export TEMPMAIL_TELEMETRY_URL="https://example.com/v1/event"
|
|
|
147
175
|
from tempmail_sdk import generate_email, GenerateEmailOptions, RetryConfig
|
|
148
176
|
|
|
149
177
|
info = generate_email(GenerateEmailOptions(
|
|
150
|
-
channel="
|
|
178
|
+
channel="mail-gw",
|
|
151
179
|
retry=RetryConfig(max_retries=3, initial_delay=2.0),
|
|
152
180
|
))
|
|
153
181
|
```
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
[](https://www.gnu.org/licenses/gpl-3.0)
|
|
4
4
|
|
|
5
|
-
临时邮箱 SDK(Python),支持 **
|
|
5
|
+
临时邮箱 SDK(Python),支持 **55** 个邮箱服务提供商,顺序与 `client.py` 中 `ALL_CHANNELS` 一致,返回格式与根目录 README 描述一致,并与 Go / npm / Rust / C 对齐。
|
|
6
6
|
|
|
7
7
|
## 安装
|
|
8
8
|
|
|
@@ -20,31 +20,59 @@ pip install https://github.com/XxxXTeam/tempmail-sdk/releases/latest/download/te
|
|
|
20
20
|
|------|--------|:----------:|------|
|
|
21
21
|
| `tempmail` | tempmail.ing | - | 支持自定义有效期 |
|
|
22
22
|
| `tempmail-cn` | tempmail.cn | - | Socket.IO:`request shortid` / `set shortid` / `mail`;`GenerateEmailOptions.domain` 可指定自定义接入域名 |
|
|
23
|
-
| `tmpmails` | tmpmails.com | ✅ | Next.js Server Action 收信;`domain` 可选语言路径 |
|
|
24
|
-
| `tempmailg` | tempmailg.com | ✅ | 独立 `requests.Session` 建邮;`GET /public/{locale}` + `POST /public/get_messages`;Token `tmg1:` + Base64(JSON);`domain` 可选语言路径 |
|
|
25
23
|
| `ta-easy` | ta-easy.com | ✅ | REST `api-endpoint.ta-easy.com` |
|
|
26
|
-
| `10mail-wangtz` | 10mail.wangtz.cn | - | REST `/api/tempMail`、`/api/emailList`;**默认跳过 TLS 证书校验** |
|
|
27
24
|
| `10minute-one` | 10minutemail.one | ✅ | SSR / JWT + Web API;`GenerateEmailOptions.domain` 可选 |
|
|
28
|
-
| `linshi-email` | linshi-email.com | - | |
|
|
29
25
|
| `linshiyou` | linshiyou.com | ✅ | `NEXUS_TOKEN` + Cookie;HTML 分段解析 |
|
|
30
|
-
| `mffac` | mffac.com | ✅ | mailbox `id`;REST 24h |
|
|
26
|
+
| `mffac` | mffac.com | ✅ | mailbox `id`;`/api/emails/{id}` 详情补齐 `text` / `html`;REST 24h |
|
|
31
27
|
| `tempmail-lol` | tempmail.lol | ✅ | 支持指定域名 |
|
|
32
28
|
| `chatgpt-org-uk` | mail.chatgpt.org.uk | ✅ | Inbox Token 等由 SDK 封装 |
|
|
33
|
-
| `temp-mail-io` | temp-mail.io |
|
|
29
|
+
| `temp-mail-io` | temp-mail.io | ✅ | REST:动态读取 `mobileTestingHeader` 后调用 `api.internal.temp-mail.io/api/v3` |
|
|
30
|
+
| `mail-cx` | mail.cx | ✅ | 匿名 Web API:`/v1/config` 获取系统域名,`/v1/inbox/{email}` 长轮询收信,内部保存 `X-Client-ID` |
|
|
31
|
+
| `catchmail` | catchmail.io | - | 公开 REST:`/api/v1/mailbox?address=` + `/api/v1/message/{id}?mailbox=`;详情含 `body.text` / `body.html` |
|
|
32
|
+
| `catchmail-mailistry` | mailistry.com | - | Catchmail API 固定域名 `mailistry.com` |
|
|
33
|
+
| `catchmail-zeppost` | zeppost.com | - | Catchmail API 固定域名 `zeppost.com` |
|
|
34
|
+
| `mailforspam` | mailforspam.com | - | 公开 REST:`/api/mailboxes/{email}/emails` + `/api/mailboxes/{email}/emails/{id}`;详情含 `body_text` / `body_html` |
|
|
35
|
+
| `mailforspam-tempmail-io` | tempmail.io | - | MailForSpam API 固定域名 `tempmail.io` |
|
|
36
|
+
| `mailforspam-disposable` | disposable.email | - | MailForSpam API 固定域名 `disposable.email` |
|
|
37
|
+
| `tempmailo` | tempmailo.com | ✅ | `GET /changemail` 建址,`POST /` 传 `mail` 拉信;返回对象直接含 `text` / `html` |
|
|
38
|
+
| `tempmailc` | tempmailc.com | - | Public API:`GET /api/v1/new` 建址,`GET /api/v1/inbox` 拉列表,`GET /api/v1/message` 读取 `text` / `html` 正文 |
|
|
39
|
+
| `mailnesia` | mailnesia.com | - | 任意 `{local}@mailnesia.com` 建址;HTML 列表 `tr.emailheader` + 详情 `text_plain_{id}` / `text_html_{id}` 正文 |
|
|
40
|
+
| `throwawaymail` | throwawaymail.app | ✅ | Web API 建址并轮询收信;Token 由 SDK 内部维护 |
|
|
41
|
+
| `inboxkitten` | inboxkitten.com | - | 公开 API 拉取收件箱列表与详情 |
|
|
42
|
+
| `getnada` | getnada.net | ✅ | `POST /api/inbox/open` 建箱;`GET /api/inbox/messages` 列表;`GET /api/inbox/message` 详情含 `text_plain` / `html_sanitized` |
|
|
43
|
+
| `mail123` | mail123.fr | - | `GET /api/v1/mailbox/new` 建址;`GET /api/v1/mailbox/{address}/messages?limit=50` 列表;详情含 `text` / `html` |
|
|
44
|
+
| `1sec-mail` | 1sec-mail.com | ✅ | CSRF + Cookie;`POST /get_messages` 拉列表;详情由 `content` / `html` 映射,缺失正文由 normalize 反向生成 |
|
|
45
|
+
| `fakemail` | fakemail.net | ✅ | `/index/index` 建址,`/index/refresh` 拉列表,`/index/email` 详情;`telo` HTML 正文 |
|
|
46
|
+
| `openinbox` | openinbox.io | ✅ | `POST /api/inbox` 建箱;`GET /emails/inbox/{id}` 列表;`GET /emails/{emailId}` 详情含 `textBody` / `htmlBody` |
|
|
47
|
+
| `inboxes` | inboxes.com | - | 公开 v2:`GET /api/v2/domain` 域名,`GET /api/v2/inbox/{email}` 列表,`GET /api/v2/message/{uid}` 详情含 `text` / `html` |
|
|
48
|
+
| `uncorreotemporal` | uncorreotemporal.com | ✅ | `POST /api/v1/mailboxes` 建箱;`X-Session-Token` 拉取列表和详情;详情含 `body_text` / `body_html` |
|
|
34
49
|
| `awamail` | awamail.com | ✅ | Session Cookie 自动管理 |
|
|
35
|
-
| `temporary-email-org` | temporary-email.org | ✅ | `GET /zh/messages` Cookie + XHR 收信 |
|
|
36
50
|
| `mail-tm` | mail.tm | ✅ | 自动注册账号获取 Bearer Token |
|
|
37
|
-
| `mail-cx` | mail.cx | ✅ | `api.mail.cx` OpenAPI;`GenerateEmailOptions.domain` 可选 |
|
|
38
51
|
| `dropmail` | dropmail.me | ✅ | GraphQL API |
|
|
39
52
|
| `guerrillamail` | guerrillamail.com | ✅ | 公开 JSON API |
|
|
53
|
+
| `guerrillamail-com` | guerrillamail.com | ✅ | GuerrillaMail 裸域 JSON API 入口 |
|
|
40
54
|
| `maildrop` | maildrop.cx | ✅ | REST:`suffixes.php` + `emails.php`;`description`→`text` |
|
|
41
55
|
| `smail-pw` | smail.pw | ✅ | `__session` Cookie;正则 + JSON 遍历解析 Flight 中的邮件行对象 |
|
|
42
|
-
| `boomlify` | boomlify.com | - | `domains/public` + `emails/public/create`;地址 `{UUID}@{域名}` |
|
|
43
|
-
| `minmail` | minmail.app | ✅ | `visitor-id` / `ck` 等序列化在 token(JSON) |
|
|
44
56
|
| `vip-215` | vip.215.im | ✅ | `POST` 建箱 + WebSocket;无正文时 synthetic 兜底 |
|
|
45
|
-
| `anonbox` | anonbox.net | ✅ | `GET /en/` 解析 HTML + mbox 收信 |
|
|
46
57
|
| `fake-legal` | fake.legal | - | `/api/domains` + `/api/inbox/new`;可选 `GenerateEmailOptions.domain` |
|
|
47
58
|
| `moakt` | moakt.com | ✅ | HTML 收件箱 + `tm_session`;`domain` 可选语言路径;独立 `requests` 请求避免污染全局 Session Cookie |
|
|
59
|
+
| `email10min` | email10min.com | ✅ | Cookie + CSRF;`POST /messages` 获取邮箱与邮件 |
|
|
60
|
+
| `mjj-cm` | mjj.cm | ✅ | Socket.IO:`request shortid` / `set shortid` / `mail` |
|
|
61
|
+
| `linshi-co` | linshi.co | ✅ | Socket.IO 克隆站,协议同 `mjj-cm` |
|
|
62
|
+
| `harakirimail` | harakirimail.com | - | 公开 REST:`GET /api/v1/inbox/{name}` + `GET /api/v1/email/{id}` |
|
|
63
|
+
| `tempmail-plus` | tempmail.plus | - | 公开 REST:`GET /api/mails/?email=` 列表,`GET /api/mails/{id}?email=` 详情 |
|
|
64
|
+
| `mail-gw` | mail.gw | ✅ | 自动注册账号获取 Bearer Token |
|
|
65
|
+
| `tempmail-lol-v2` | tempmail.lol | ✅ | `GET /generate` 返回 address+token,`GET /auth/{token}` 拉取收件箱 |
|
|
66
|
+
| `sharklasers` | sharklasers.com | ✅ | GuerrillaMail 镜像,API 与 `guerrillamail` 相同 |
|
|
67
|
+
| `sharklasers-com` | sharklasers.com | ✅ | GuerrillaMail 裸域镜像,API 与 `guerrillamail` 相同 |
|
|
68
|
+
| `grr-la` | grr.la | ✅ | GuerrillaMail 镜像,API 与 `guerrillamail` 相同 |
|
|
69
|
+
| `grr-la-com` | grr.la | ✅ | GuerrillaMail 裸域镜像,API 与 `guerrillamail` 相同 |
|
|
70
|
+
| `guerrillamail-info` | guerrillamail.info | ✅ | GuerrillaMail 镜像,API 与 `guerrillamail` 相同 |
|
|
71
|
+
| `spam4me` | spam4.me | ✅ | GuerrillaMail 镜像,API 与 `guerrillamail` 相同 |
|
|
72
|
+
| `guerrillamail-net` | guerrillamail.net | ✅ | GuerrillaMail 镜像,API 与 `guerrillamail` 相同 |
|
|
73
|
+
| `guerrillamail-org` | guerrillamail.org | ✅ | GuerrillaMail 镜像,API 与 `guerrillamail` 相同 |
|
|
74
|
+
| `guerrillamailblock` | guerrillamailblock.com | ✅ | GuerrillaMail 镜像,API 与 `guerrillamail` 相同 |
|
|
75
|
+
| `guerrillamail-com-www` | guerrillamail.com | ✅ | GuerrillaMail `www` JSON API 入口 |
|
|
48
76
|
|
|
49
77
|
## 快速开始
|
|
50
78
|
|
|
@@ -134,7 +162,7 @@ export TEMPMAIL_TELEMETRY_URL="https://example.com/v1/event"
|
|
|
134
162
|
from tempmail_sdk import generate_email, GenerateEmailOptions, RetryConfig
|
|
135
163
|
|
|
136
164
|
info = generate_email(GenerateEmailOptions(
|
|
137
|
-
channel="
|
|
165
|
+
channel="mail-gw",
|
|
138
166
|
retry=RetryConfig(max_retries=3, initial_delay=2.0),
|
|
139
167
|
))
|
|
140
168
|
```
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: tempemail-sdk
|
|
3
|
-
Version: 1.2.
|
|
3
|
+
Version: 1.2.4
|
|
4
4
|
Summary: 临时邮箱 SDK,所有渠道返回统一标准化格式
|
|
5
5
|
License: GPL-3.0
|
|
6
6
|
Requires-Python: >=3.10
|
|
@@ -15,7 +15,7 @@ Requires-Dist: pygments>=2.19.2; extra == "dev"
|
|
|
15
15
|
|
|
16
16
|
[](https://www.gnu.org/licenses/gpl-3.0)
|
|
17
17
|
|
|
18
|
-
临时邮箱 SDK(Python),支持 **
|
|
18
|
+
临时邮箱 SDK(Python),支持 **55** 个邮箱服务提供商,顺序与 `client.py` 中 `ALL_CHANNELS` 一致,返回格式与根目录 README 描述一致,并与 Go / npm / Rust / C 对齐。
|
|
19
19
|
|
|
20
20
|
## 安装
|
|
21
21
|
|
|
@@ -33,31 +33,59 @@ pip install https://github.com/XxxXTeam/tempmail-sdk/releases/latest/download/te
|
|
|
33
33
|
|------|--------|:----------:|------|
|
|
34
34
|
| `tempmail` | tempmail.ing | - | 支持自定义有效期 |
|
|
35
35
|
| `tempmail-cn` | tempmail.cn | - | Socket.IO:`request shortid` / `set shortid` / `mail`;`GenerateEmailOptions.domain` 可指定自定义接入域名 |
|
|
36
|
-
| `tmpmails` | tmpmails.com | ✅ | Next.js Server Action 收信;`domain` 可选语言路径 |
|
|
37
|
-
| `tempmailg` | tempmailg.com | ✅ | 独立 `requests.Session` 建邮;`GET /public/{locale}` + `POST /public/get_messages`;Token `tmg1:` + Base64(JSON);`domain` 可选语言路径 |
|
|
38
36
|
| `ta-easy` | ta-easy.com | ✅ | REST `api-endpoint.ta-easy.com` |
|
|
39
|
-
| `10mail-wangtz` | 10mail.wangtz.cn | - | REST `/api/tempMail`、`/api/emailList`;**默认跳过 TLS 证书校验** |
|
|
40
37
|
| `10minute-one` | 10minutemail.one | ✅ | SSR / JWT + Web API;`GenerateEmailOptions.domain` 可选 |
|
|
41
|
-
| `linshi-email` | linshi-email.com | - | |
|
|
42
38
|
| `linshiyou` | linshiyou.com | ✅ | `NEXUS_TOKEN` + Cookie;HTML 分段解析 |
|
|
43
|
-
| `mffac` | mffac.com | ✅ | mailbox `id`;REST 24h |
|
|
39
|
+
| `mffac` | mffac.com | ✅ | mailbox `id`;`/api/emails/{id}` 详情补齐 `text` / `html`;REST 24h |
|
|
44
40
|
| `tempmail-lol` | tempmail.lol | ✅ | 支持指定域名 |
|
|
45
41
|
| `chatgpt-org-uk` | mail.chatgpt.org.uk | ✅ | Inbox Token 等由 SDK 封装 |
|
|
46
|
-
| `temp-mail-io` | temp-mail.io |
|
|
42
|
+
| `temp-mail-io` | temp-mail.io | ✅ | REST:动态读取 `mobileTestingHeader` 后调用 `api.internal.temp-mail.io/api/v3` |
|
|
43
|
+
| `mail-cx` | mail.cx | ✅ | 匿名 Web API:`/v1/config` 获取系统域名,`/v1/inbox/{email}` 长轮询收信,内部保存 `X-Client-ID` |
|
|
44
|
+
| `catchmail` | catchmail.io | - | 公开 REST:`/api/v1/mailbox?address=` + `/api/v1/message/{id}?mailbox=`;详情含 `body.text` / `body.html` |
|
|
45
|
+
| `catchmail-mailistry` | mailistry.com | - | Catchmail API 固定域名 `mailistry.com` |
|
|
46
|
+
| `catchmail-zeppost` | zeppost.com | - | Catchmail API 固定域名 `zeppost.com` |
|
|
47
|
+
| `mailforspam` | mailforspam.com | - | 公开 REST:`/api/mailboxes/{email}/emails` + `/api/mailboxes/{email}/emails/{id}`;详情含 `body_text` / `body_html` |
|
|
48
|
+
| `mailforspam-tempmail-io` | tempmail.io | - | MailForSpam API 固定域名 `tempmail.io` |
|
|
49
|
+
| `mailforspam-disposable` | disposable.email | - | MailForSpam API 固定域名 `disposable.email` |
|
|
50
|
+
| `tempmailo` | tempmailo.com | ✅ | `GET /changemail` 建址,`POST /` 传 `mail` 拉信;返回对象直接含 `text` / `html` |
|
|
51
|
+
| `tempmailc` | tempmailc.com | - | Public API:`GET /api/v1/new` 建址,`GET /api/v1/inbox` 拉列表,`GET /api/v1/message` 读取 `text` / `html` 正文 |
|
|
52
|
+
| `mailnesia` | mailnesia.com | - | 任意 `{local}@mailnesia.com` 建址;HTML 列表 `tr.emailheader` + 详情 `text_plain_{id}` / `text_html_{id}` 正文 |
|
|
53
|
+
| `throwawaymail` | throwawaymail.app | ✅ | Web API 建址并轮询收信;Token 由 SDK 内部维护 |
|
|
54
|
+
| `inboxkitten` | inboxkitten.com | - | 公开 API 拉取收件箱列表与详情 |
|
|
55
|
+
| `getnada` | getnada.net | ✅ | `POST /api/inbox/open` 建箱;`GET /api/inbox/messages` 列表;`GET /api/inbox/message` 详情含 `text_plain` / `html_sanitized` |
|
|
56
|
+
| `mail123` | mail123.fr | - | `GET /api/v1/mailbox/new` 建址;`GET /api/v1/mailbox/{address}/messages?limit=50` 列表;详情含 `text` / `html` |
|
|
57
|
+
| `1sec-mail` | 1sec-mail.com | ✅ | CSRF + Cookie;`POST /get_messages` 拉列表;详情由 `content` / `html` 映射,缺失正文由 normalize 反向生成 |
|
|
58
|
+
| `fakemail` | fakemail.net | ✅ | `/index/index` 建址,`/index/refresh` 拉列表,`/index/email` 详情;`telo` HTML 正文 |
|
|
59
|
+
| `openinbox` | openinbox.io | ✅ | `POST /api/inbox` 建箱;`GET /emails/inbox/{id}` 列表;`GET /emails/{emailId}` 详情含 `textBody` / `htmlBody` |
|
|
60
|
+
| `inboxes` | inboxes.com | - | 公开 v2:`GET /api/v2/domain` 域名,`GET /api/v2/inbox/{email}` 列表,`GET /api/v2/message/{uid}` 详情含 `text` / `html` |
|
|
61
|
+
| `uncorreotemporal` | uncorreotemporal.com | ✅ | `POST /api/v1/mailboxes` 建箱;`X-Session-Token` 拉取列表和详情;详情含 `body_text` / `body_html` |
|
|
47
62
|
| `awamail` | awamail.com | ✅ | Session Cookie 自动管理 |
|
|
48
|
-
| `temporary-email-org` | temporary-email.org | ✅ | `GET /zh/messages` Cookie + XHR 收信 |
|
|
49
63
|
| `mail-tm` | mail.tm | ✅ | 自动注册账号获取 Bearer Token |
|
|
50
|
-
| `mail-cx` | mail.cx | ✅ | `api.mail.cx` OpenAPI;`GenerateEmailOptions.domain` 可选 |
|
|
51
64
|
| `dropmail` | dropmail.me | ✅ | GraphQL API |
|
|
52
65
|
| `guerrillamail` | guerrillamail.com | ✅ | 公开 JSON API |
|
|
66
|
+
| `guerrillamail-com` | guerrillamail.com | ✅ | GuerrillaMail 裸域 JSON API 入口 |
|
|
53
67
|
| `maildrop` | maildrop.cx | ✅ | REST:`suffixes.php` + `emails.php`;`description`→`text` |
|
|
54
68
|
| `smail-pw` | smail.pw | ✅ | `__session` Cookie;正则 + JSON 遍历解析 Flight 中的邮件行对象 |
|
|
55
|
-
| `boomlify` | boomlify.com | - | `domains/public` + `emails/public/create`;地址 `{UUID}@{域名}` |
|
|
56
|
-
| `minmail` | minmail.app | ✅ | `visitor-id` / `ck` 等序列化在 token(JSON) |
|
|
57
69
|
| `vip-215` | vip.215.im | ✅ | `POST` 建箱 + WebSocket;无正文时 synthetic 兜底 |
|
|
58
|
-
| `anonbox` | anonbox.net | ✅ | `GET /en/` 解析 HTML + mbox 收信 |
|
|
59
70
|
| `fake-legal` | fake.legal | - | `/api/domains` + `/api/inbox/new`;可选 `GenerateEmailOptions.domain` |
|
|
60
71
|
| `moakt` | moakt.com | ✅ | HTML 收件箱 + `tm_session`;`domain` 可选语言路径;独立 `requests` 请求避免污染全局 Session Cookie |
|
|
72
|
+
| `email10min` | email10min.com | ✅ | Cookie + CSRF;`POST /messages` 获取邮箱与邮件 |
|
|
73
|
+
| `mjj-cm` | mjj.cm | ✅ | Socket.IO:`request shortid` / `set shortid` / `mail` |
|
|
74
|
+
| `linshi-co` | linshi.co | ✅ | Socket.IO 克隆站,协议同 `mjj-cm` |
|
|
75
|
+
| `harakirimail` | harakirimail.com | - | 公开 REST:`GET /api/v1/inbox/{name}` + `GET /api/v1/email/{id}` |
|
|
76
|
+
| `tempmail-plus` | tempmail.plus | - | 公开 REST:`GET /api/mails/?email=` 列表,`GET /api/mails/{id}?email=` 详情 |
|
|
77
|
+
| `mail-gw` | mail.gw | ✅ | 自动注册账号获取 Bearer Token |
|
|
78
|
+
| `tempmail-lol-v2` | tempmail.lol | ✅ | `GET /generate` 返回 address+token,`GET /auth/{token}` 拉取收件箱 |
|
|
79
|
+
| `sharklasers` | sharklasers.com | ✅ | GuerrillaMail 镜像,API 与 `guerrillamail` 相同 |
|
|
80
|
+
| `sharklasers-com` | sharklasers.com | ✅ | GuerrillaMail 裸域镜像,API 与 `guerrillamail` 相同 |
|
|
81
|
+
| `grr-la` | grr.la | ✅ | GuerrillaMail 镜像,API 与 `guerrillamail` 相同 |
|
|
82
|
+
| `grr-la-com` | grr.la | ✅ | GuerrillaMail 裸域镜像,API 与 `guerrillamail` 相同 |
|
|
83
|
+
| `guerrillamail-info` | guerrillamail.info | ✅ | GuerrillaMail 镜像,API 与 `guerrillamail` 相同 |
|
|
84
|
+
| `spam4me` | spam4.me | ✅ | GuerrillaMail 镜像,API 与 `guerrillamail` 相同 |
|
|
85
|
+
| `guerrillamail-net` | guerrillamail.net | ✅ | GuerrillaMail 镜像,API 与 `guerrillamail` 相同 |
|
|
86
|
+
| `guerrillamail-org` | guerrillamail.org | ✅ | GuerrillaMail 镜像,API 与 `guerrillamail` 相同 |
|
|
87
|
+
| `guerrillamailblock` | guerrillamailblock.com | ✅ | GuerrillaMail 镜像,API 与 `guerrillamail` 相同 |
|
|
88
|
+
| `guerrillamail-com-www` | guerrillamail.com | ✅ | GuerrillaMail `www` JSON API 入口 |
|
|
61
89
|
|
|
62
90
|
## 快速开始
|
|
63
91
|
|
|
@@ -147,7 +175,7 @@ export TEMPMAIL_TELEMETRY_URL="https://example.com/v1/event"
|
|
|
147
175
|
from tempmail_sdk import generate_email, GenerateEmailOptions, RetryConfig
|
|
148
176
|
|
|
149
177
|
info = generate_email(GenerateEmailOptions(
|
|
150
|
-
channel="
|
|
178
|
+
channel="mail-gw",
|
|
151
179
|
retry=RetryConfig(max_retries=3, initial_delay=2.0),
|
|
152
180
|
))
|
|
153
181
|
```
|
|
@@ -18,30 +18,50 @@ tempmail_sdk/providers/__init__.py
|
|
|
18
18
|
tempmail_sdk/providers/anonbox.py
|
|
19
19
|
tempmail_sdk/providers/awamail.py
|
|
20
20
|
tempmail_sdk/providers/boomlify.py
|
|
21
|
+
tempmail_sdk/providers/catchmail.py
|
|
21
22
|
tempmail_sdk/providers/chatgpt_org_uk.py
|
|
22
23
|
tempmail_sdk/providers/dropmail.py
|
|
24
|
+
tempmail_sdk/providers/email10min.py
|
|
23
25
|
tempmail_sdk/providers/emailnator.py
|
|
26
|
+
tempmail_sdk/providers/etempmail.py
|
|
24
27
|
tempmail_sdk/providers/fake_legal.py
|
|
28
|
+
tempmail_sdk/providers/fakemail.py
|
|
29
|
+
tempmail_sdk/providers/getnada.py
|
|
25
30
|
tempmail_sdk/providers/guerrillamail.py
|
|
26
|
-
tempmail_sdk/providers/
|
|
27
|
-
tempmail_sdk/providers/
|
|
31
|
+
tempmail_sdk/providers/guerrillamail_mirrors.py
|
|
32
|
+
tempmail_sdk/providers/harakirimail.py
|
|
33
|
+
tempmail_sdk/providers/inboxes.py
|
|
34
|
+
tempmail_sdk/providers/inboxkitten.py
|
|
35
|
+
tempmail_sdk/providers/linshi_co.py
|
|
28
36
|
tempmail_sdk/providers/linshiyou.py
|
|
37
|
+
tempmail_sdk/providers/mail123.py
|
|
29
38
|
tempmail_sdk/providers/mail_cx.py
|
|
30
39
|
tempmail_sdk/providers/mail_gw.py
|
|
31
40
|
tempmail_sdk/providers/mail_tm.py
|
|
41
|
+
tempmail_sdk/providers/mail_xiuvi.py
|
|
32
42
|
tempmail_sdk/providers/maildrop.py
|
|
43
|
+
tempmail_sdk/providers/mailforspam.py
|
|
44
|
+
tempmail_sdk/providers/mailnesia.py
|
|
33
45
|
tempmail_sdk/providers/mffac.py
|
|
34
46
|
tempmail_sdk/providers/minmail.py
|
|
47
|
+
tempmail_sdk/providers/mjj_cm.py
|
|
35
48
|
tempmail_sdk/providers/moakt.py
|
|
49
|
+
tempmail_sdk/providers/one_sec_mail.py
|
|
50
|
+
tempmail_sdk/providers/openinbox.py
|
|
36
51
|
tempmail_sdk/providers/smail_pw.py
|
|
52
|
+
tempmail_sdk/providers/socketio_mail.py
|
|
37
53
|
tempmail_sdk/providers/ta_easy.py
|
|
38
54
|
tempmail_sdk/providers/temp_mail_io.py
|
|
39
55
|
tempmail_sdk/providers/tempmail.py
|
|
40
56
|
tempmail_sdk/providers/tempmail_cn.py
|
|
41
57
|
tempmail_sdk/providers/tempmail_lol.py
|
|
42
|
-
tempmail_sdk/providers/
|
|
43
|
-
tempmail_sdk/providers/
|
|
44
|
-
tempmail_sdk/providers/
|
|
58
|
+
tempmail_sdk/providers/tempmail_lol_v2.py
|
|
59
|
+
tempmail_sdk/providers/tempmail_plus.py
|
|
60
|
+
tempmail_sdk/providers/tempmailc.py
|
|
61
|
+
tempmail_sdk/providers/tempmailo.py
|
|
45
62
|
tempmail_sdk/providers/tenminute_one.py
|
|
63
|
+
tempmail_sdk/providers/throwawaymail.py
|
|
46
64
|
tempmail_sdk/providers/tmpmails.py
|
|
65
|
+
tempmail_sdk/providers/twentyfourmail_chacuo.py
|
|
66
|
+
tempmail_sdk/providers/uncorreotemporal.py
|
|
47
67
|
tempmail_sdk/providers/vip_215.py
|