Metadata-Version: 2.1
Name: ProfanityDetector
Version: 0.1
Summary: Detect profanity in a sentence.
Home-page: https://github.com/xditya/ProfanityDetector
Author: xditya
Author-email: xditya@ultroid.tech
License: GNU AFFERO GENERAL PUBLIC LICENSE (v3)
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# Profanity Detector

- Installing:   
`pip install ProfanityDetector`

- Requirements:   
`requests`

# Sample Usage

```python
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](https://t.me/TeamUltroid).

