Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/xditya/profanitydetector
Profanity Detector.
https://github.com/xditya/profanitydetector
profanity-detection
Last synced: 3 days 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 (over 3 years ago)
- Default Branch: master
- Last Pushed: 2021-06-15T17:29:36.000Z (over 3 years ago)
- Last Synced: 2024-11-08T17:52:31.531Z (4 days ago)
- Topics: profanity-detection
- Language: Python
- Homepage: https://pypi.org/project/ProfanityDetector/
- Size: 12.7 KB
- Stars: 7
- Watchers: 3
- 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).