A multilingual profanity filter supporting English, Hindi, and Bengali
Project description
ProfanityFilter
A simple and customizable profanity filtering class supporting multiple languages: English (en), Hindi (hi), and Bengali (bn). It allows you to censor, detect, or remove profane words from a given text.
Features
- 🔍 Detect profanity in text
- ✂️ Remove profanity completely
- ✳️ Censor profanity with a customizable replacement character
- 🌐 Multilingual support (English, Hindi, Bengali)
- 💡 Easy to integrate and extend
Installation
pip3 install anti-profanity
from anti_profanity import ProfanityFilter
# For Hindi only
pf_hi = ProfanityFilter("hi")
# For English and Hindi
pf_multi = ProfanityFilter(["en", "hi"])
# if no argument provided "en' will be default
pf = ProfanityFilter()
Methods
Usage
#Replaces each character of any detected profanity with the replacement character.
censored = pf.censor_profanity("This text contains shit.")
print(censored) # Output: This text contains ****
# Checks whether the given text contains any profane words.
is_dirty = pf.is_profanity("This text contain Shit")
print(is_dirty) # Output: True
# Removes all profane words from the given text.
cleaned = pf.remove_profanity("Some fucking text")
print(cleaned) # Output: Some text
# List avilable language
print(pf.list_languages())
# Show available methods
print(pf.list_methods())
Command Line
# Censor profanity in text
anti_profanity --action censor --text "Your text here" --lang en
# Check if a file contains profanity
anti_profanity --action check --file input.txt --lang en hi
# Remove profanity from a file and save to another file
anti_profanity --action remove --file input.txt --output clean.txt --lang bn
# List supported languages
anti_profanity --action list_langs
# List available methods
anti_profanity --action list_methods
Customization
You can extend the filter by adding your own languages or editing the existing profanity lists in the data subdirectory:
Each language file (e.g., english_en.py) should export a list of profane words:
License
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file anti_profanity-0.2.1.tar.gz.
File metadata
- Download URL: anti_profanity-0.2.1.tar.gz
- Upload date:
- Size: 3.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
545067a0e6c64256fca5aa209e5b90501a20b5f66b6fb0287a3ebc074b21dc81
|
|
| MD5 |
cc75f572d039d95aacdcbe08aa820978
|
|
| BLAKE2b-256 |
94b65e17ae87a7d0e98b9a96dbff61d586d20429096e00f6812dc74cb72e8f21
|
File details
Details for the file anti_profanity-0.2.1-py3-none-any.whl.
File metadata
- Download URL: anti_profanity-0.2.1-py3-none-any.whl
- Upload date:
- Size: 3.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
17a5417962faa4b1e9d7dd85111792aaf2f78b8f02967bdd1fe95d3013047566
|
|
| MD5 |
840a17174229298a74a18c5adf3169db
|
|
| BLAKE2b-256 |
0a8a01d00bdb8d16887a83b89acacf4a9a300fb5a41d3e853e8dfdcabf8acc8f
|