@Neuroplexus 在 Cohere 注册机原型 中发帖
"""cohere_reg_bot.py
Mass‑registration bot for Cohere – **IMAP edition**
"""
from __future__ import annotations
import argparse
import email
import imaplib
import json
import logging
import os
import random
import re
import string
import threading
import time
from concurrent.futures import ThreadPoolExecutor, as_completed
from email.message import Message
from typing import Dict, Optional
impo...