Conway / perspective

An API wrapper for Google's Perspective API
MIT License
18 stars 9 forks source link
google-api perspective-api python

perspective

perspective is an API wrapper for Google's Perspective API

Installation

To install, use pip install perspective

Usage

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