Command line tool for Sender Score lookups.
Sender Score is a number between 0 and 100 that identifies your sender reputation and shows you how mailbox providers view your IP address.
The project is maintained by Return Path. For more information about the Sender Score project, visit the official FAQ page at https://www.senderscore.org/faq/.
pip install senderscore
senderscore <IP>
from senderscore import senderscore
ip = '177.136.19.206' # e.g.
score = senderscore.cli(ip)
from senderscore import senderscore
ip = '177.136.19.206' # e.g.
score = senderscore.get_score(ip)
Validate the syntax of a given IP:
senderscore.is_valid_ip(ip: str) -> bool
Retrieve the Sender Score value for the given IP:
senderscore.get_score(ip: str) -> str
Run the cli resolution for the given IP:
senderscore.cli(ip: str) -> None
Just fork the project and send your pull requests (with tests please).