Metadata-Version: 2.4
Name: lemonify
Version: 0.1
Summary: Lemon is a free, lightweight text classifier to indentify toxicity, insult, sexuality, threat, neutrality from a sentance
Author: Blaze
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: requests
Dynamic: author
Dynamic: description
Dynamic: description-content-type
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# Lemon
Lemon is a free, lighterweight and fast python library to detect toxicity, insult, sexuality, threat, neutrality from text. It utilizes machine learning to do so.

# Installation
```py
pip install lemonify
```

# Example usage
```py
from lemonify import lemon

print(lemon("you are stupid"))
```

# Response example
```py
{'toxicity': 1.0, 'insult': 1.0, 'sexuality': 0.0, 'threat': 0.0, 'neutrality': 0.0}
```

# Made with ♥️ by [Blaze](https://discord.com/users/1238444724386533417)
# Feel free to DM me on discord if there's any issues [Blaze](https://discord.com/users/1238444724386533417) :>
