encycloDB
encycloDB copied to clipboard
Make a bad words version for python?
Just take the list of bad words them selves and put them like this
'ass', 'shit', 'fuck' etc
I am no python expert but seems simple enough
import requests
import json
list = requests.get("https://raw.githubusercontent.com/turalus/encycloDB/master/Dirty%20Words/DirtyWords.json")
list = json.loads(list.text)
print(list)
oh Im so dumb thank you!