Metadata-Version: 2.1
Name: gnsentiment
Version: 0.0.1
Summary: GN-Sentiment (Natural language API - Sentiment) is a Python library for analyzing sentiments with GCP.
Home-page: https://github.com/LuferGonn/gnsentiment
Author: Luis Fernando
Author-email: lufergonn@gmail.com
License: MIT License
Project-URL: Bug Tracker, https://github.com/LuferGonn/gnsentiment/issues
Project-URL: Source Code, https://github.com/LuferGonn/gnsentiment
Keywords: GNSentiment,Analyzing sentiment
Platform: any
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# Natural Language API - Sentiment (GCP)

GN-Sentiment (Natural language API - Sentiment) is a Python library for analyzing sentiments with GCP.

## Installation

Use the package manager [pip](https://pip.pypa.io/en/stable/) to install gnsentiment.

```bash
pip install gnsentiment
```
or

```bash
pip install -i https://test.pypi.org/simple/ gnsentiment
```

## Usage

```python
from gnsentiment import Gnsentiment

s = Gnsentiment('path_key.json')

s.analyze_sentiment('ejemplo texto')
# return: dict(...)

s.sentiment(1)
# return: 1

```

## License
[MIT](https://choosealicense.com/licenses/mit/)


