Skip to content

xditya/ProfanityDetector

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 

Repository files navigation

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.