fucking damnit

This commit is contained in:
2018-11-20 21:06:11 +01:00
parent 9941a77679
commit 74942b0e70
2 changed files with 68355 additions and 7265 deletions

View File

@@ -9,6 +9,8 @@ with open('commets.txt', 'w') as outfile:
try:
if (item["commentText"]):
temp = item["commentText"]
outfile.write(temp.replace("\n", " ").replace("\r", " ")+"\n")
woordjes = temp.replace("\n", " ").replace("\r", " ").split(" ")
for w in woordjes:
outfile.write(w+"\n")
except KeyError:
print("wss een comment reply")