ProfanityDetector

Detect profanity in a sentence.


Keywords
profanity-detection
License
AGPL-3.0
Install
pip install ProfanityDetector==0.2

Documentation

Profanity Detector

  • Installing:
    pip install ProfanityDetector

  • Requirements:
    requests

Sample Usage

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.