Metadata-Version: 2.1
Name: profane_detector
Version: 1.1.0
Summary: A small profane_detector
Author-email: Verso Vuorenmaa <verso.vuorenmaa@luova.club>
Project-URL: Homepage, https://github.com/botsarefuture/profane_detector
Project-URL: Issues, https://github.com/botsarefuture/profane_detector/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown

# ProfanityDetector
A Python library for profanity detection in text, providing a customizable ProfaneDetector class. Easily integrate into your projects to filter or flag content.

## Installing

```bash
pip install profane-detector
```

## Usage examples

```python
from profane_detector import ProfaneDetector

profane_detector = ProfaneDetector()

to_detect = "fuck you!"
language = "en"

did_detect = profane_detector.detect_api(language, to_detect)
print(did_detect)
```
