Metadata-Version: 2.4
Name: noahs_simple_sentiment_classifier
Version: 0.1.1
Summary: A combination of classification implementations for finding if text is 'friendly', 'hostile', or 'neutral'
Author-email: Noah Jones <jonesnoah45010@gmail.com>
License: MIT
Project-URL: Homepage, https://github.com/jonesnoah45010/simple_sentiment_classifier
Requires-Python: >=3.9
Description-Content-Type: text/markdown
Requires-Dist: textblob





# Noah's Simple Sentiment Classifier

A super simple implementation of the textblob polarity classifier

## Installation

```bash
pip install noahs_simple_sentiment_classifier
```

## Code Sample

```python
from noahs_simple_sentiment_classifier import classify

value = classify("i hate you")
# value will be either "hostile","friendly","neutral"
print(value)

```
