Official Python wrapper for the Emailable API (email verification and deliverability). Current version: 3.1.0. Requires Python >=3.6. Releases are stable, with minor updates as needed.
pip install emailableNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Initialize the client with your API key (set EMAILLABLE_API_KEY env var) and verify an email.
Use Client(api_key='your_key') instead of Client('your_key').Verify with: state = response['state'] and compare against 'deliverable', 'undeliverable', 'risky', or 'unknown'.
Remove 'ip_address' from the call; use the separate IP verification endpoint if needed.
Use 'from emailable import Client' and ensure emailable >=3.0.0: pip install --upgrade emailable
Use keyword argument: Client(api_key='your_key')