https://github.com/xditya/profanitydetector
Profanity Detector.
https://github.com/xditya/profanitydetector
profanity-detection
Last synced: 3 months ago
JSON representation
Profanity Detector.
- Host: GitHub
- URL: https://github.com/xditya/profanitydetector
- Owner: xditya
- License: agpl-3.0
- Created: 2021-06-08T05:42:39.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2021-06-15T17:29:36.000Z (about 4 years ago)
- Last Synced: 2025-04-15T15:50:22.057Z (3 months ago)
- Topics: profanity-detection
- Language: Python
- Homepage: https://pypi.org/project/ProfanityDetector/
- Size: 12.7 KB
- Stars: 7
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Profanity Detector
- Installing:
`pip install ProfanityDetector`- Requirements:
`requests`# Sample Usage
```python
from ProfanityDetector import detectorsentence = "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).