A simple Python wrapper for Postmark’s Spamcheck API
$ pip install spamcheck
import spamcheck
result = spamcheck.check(your_email_content, report=True)
score = result['score']
report = result['report']
$ pip install build twine
$ python -m build
$ twine upload dist/*
This software is licensed under MIT License