Metadata-Version: 2.1
Name: EZprofanity
Version: 0.0.1
Summary: Easily check for profane and innapropriate words quickly.
Author: Victor wolmarans
Description-Content-Type: text/markdown
License-File: license.txt


# EZprofanity

Quickly detect profane, innapropriate and disgusting language!

Example:

```
from ezprofanity import check
text = "I shit a lot."
if check(text):
	for i in check(text):
		print(f"You said {i}! That is profane!")
>> You said shit! That is profane!
```

Try and edit the text to include multiple swear words to test it out if you want.

EZprofanity can also detect multiple variants of a word like:
sh1t
sh i t
etc...

You may also include other words:
```
from ezprofanity import check
text = "censoredword"
if check(text,include=["censoredword"]):
	print("Profane!")
>> Profane!
```

If you want to exclude something, you can also do that:
```
from ezprofanity import check
text = "Sh1t"
if check(text,exclude=["shit"]):
	print("Profane!")
else:
	print("OK!")
>> OK!
```
    
