encycloDB icon indicating copy to clipboard operation
encycloDB copied to clipboard

Make a bad words version for python?

Open ThraceAerospace opened this issue 4 years ago • 2 comments

Just take the list of bad words them selves and put them like this

'ass', 'shit', 'fuck' etc

ThraceAerospace avatar Feb 12 '21 00:02 ThraceAerospace

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)

deter0 avatar Aug 19 '21 16:08 deter0

oh Im so dumb thank you!

ThraceAerospace avatar Aug 23 '21 02:08 ThraceAerospace