Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/xditya/profanitydetector

Profanity Detector.
https://github.com/xditya/profanitydetector

profanity-detection

Last synced: 3 days ago
JSON representation

Profanity Detector.

Awesome Lists containing this project

README

        

# Profanity Detector

- Installing:
`pip install ProfanityDetector`

- Requirements:
`requests`

# Sample Usage

```python
from ProfanityDetector import detector

sentence = "This is a sample sentence."
word, detected = detector(sentence)

if detected:
print(f"Profanity detected.\nWord: {word}")
```

Made with 💕 by [@TeamUltroid](https://t.me/TeamUltroid).