perspective is an API wrapper for Google's Perspective API
To install, use pip install perspective
A simple example:
from perspective import PerspectiveAPI
p = PerspectiveAPI("API_KEY")
result = p.score("This is a comment")
print("Toxicity score: ", result["TOXICITY"])
More complex