An easy-to-use API wrapper for Perspective API written in Python.
Project description
perspective.py
An easy-to-use API wrapper written in Python, for Perspective API, an API that uses machine learning to identify "toxic" comments.
Installation
Download & install git from https://git-scm.com/ and run below command:
python -m pip install --upgrade git+https://github.com/Yilmaz4/perspective.py.git
Or alternatively, you can install from PyPI (Python Package Index):
pyhton -m pip install --upgrade perspective.py
Getting an API key
You need to get an API key from Google to use Perspective API. Instructions are explained in this article.
Command arguments
text: str
The text to analyze
requestedAttributes: list[str]
A list of attributes to analyze the text for.
language: str
The language of text.
You can use either Attributes.TOXICITY
object or simply "TOXICITY"
as a string for requestedAttributes
argument.
You can specify the language of the text by using language
argument. language
argument accepts both language codes (such as "en" or "es") and language names (such as "English" or "Spanish"). Small spelling mistakes in language names can also be accepted (such as "Eglish" or "Spamish"). If you set language
argument to None
, language will be automatically detected.
You can find a list of all attributes and languages each attribute supports in this article.
Example usage
from perspective import Client, Attributes, utils
# Creating the Client object with the API key
API_KEY = "your_api_key"
client = Client(token = API_KEY)
# Make a request to Perspective API with a text to analyze and requested attributes
response = client.analyze(text = "Hey! How are you?", requestedAttributes = [Attributes.TOXICITY, Attributes.INSULT])
# Print the response (dict)
print(response)
# Print the percent of TOXICITY attribute
print(response["TOXICITY"]
print(" ")
# Iterate over the response
for attribute, result in response.items():
print(attribute.capitalize() + ": " + "%.2f" % result + "%")
print(" ")
# Or, use utils.format_response to print a formatted text of the response
print(utils.format_response(response, align_right=True))
Output
{'TOXICITY': 7.019685000000001, 'INSULT': 3.9963423999999996}
7.019685000000001
Toxicity: 7.02%
Insult: 4.00%
Toxicity: 7.02%
Insult: 4.00%
As you can see in the output, Client.analyze
returns a dictionary with requested attributes and their analysis results as percents. You can get percents of each attribute, or iterate over dictionary.
Example usage for creating a graph
from perspective import Client, Attributes, utils
# Creating the Client object with the API key
API_KEY = "your_api_key"
client = Client(token = API_KEY)
# Make a request to Perspective API with a text to analyze and requested attributes
response = client.analyze(text = "Hey! How are you?", requestedAttributes = Attributes.Production) # Attributes.Production includes all production-ready attributes
# Create a graph and show it by popping up a window
utils.show_graph(response=response, title="Sample graph")
# Or alternatively, you can save the graph
utils.save_graph(response=response, filename="graph.png", title="Sample graph")
Output
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file perspective.py-0.3.2.tar.gz
.
File metadata
- Download URL: perspective.py-0.3.2.tar.gz
- Upload date:
- Size: 89.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | adc293b1b720a9e4dad8e9616e82b2eb0e979305967297ecadd274cd25df51b7 |
|
MD5 | 12bcfd0c10f3a43282b326b2a246b879 |
|
BLAKE2b-256 | 2239a2aa03e25999f5278bf1592ffa258626f75e691e297821d0001c5f2602bb |
File details
Details for the file perspective.py-0.3.2-py3-none-any.whl
.
File metadata
- Download URL: perspective.py-0.3.2-py3-none-any.whl
- Upload date:
- Size: 16.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b81c6a3b595a5e8b734866dd0ce2c3e0a0c24dadabf3fa03cea8ab1daa2ceb96 |
|
MD5 | 28302c73fe783482f3b5f617f5af96a4 |
|
BLAKE2b-256 | 2babe57265b3ddaf832413df32d61d8244123bbabf4a00d0def987ab5aaedfdb |