Neuroplexus临时邮箱 api | Python 库 中发帖

从临时邮箱api继续讨论: 
import requests
import json
import time
from typing import Optional, List, Dict

class Inbox:
"""
Represents a temporary email inbox.
"""
def __init__(self, address: str, id: str, token: str):
self.address = address
self.id = id
self.token = token

def get_token(self) -> str:
"""Returns the inbox token."""
return self.token...