Metadata-Version: 1.1
Name: perspective
Version: 0.1
Summary: A package for interfacing with Google's Perspective API
Home-page: https://github.com/conway/perspective
Author: Jake Conway
Author-email: jake.h.conway@gmail.com
License: UNLICENSE
Description: # perspective
        
        perspective is an API wrapper for Google's [Perspective API](http://www.perspectiveapi.com/)
        
        ## documentation
        
        Some documentation is available [on readthedocs](http://perspective.readthedocs.io/en/latest/).
        
        ## Installation
        
        To install, use `pip install perspective`
        
        ## Usage
        
        A simple example:
        
        ```python
        from perspective import Perspective
        p = Perspective("API_KEY")
        comment = p.score("This is a comment", tests=["TOXICITY"])
        print("Toxicity score: " + comment["TOXICITY"].score)
        ```
        
Keywords: google,perspective api,perspective,natural language,anti-harassment,google apis
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Utilities
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
