http://www.wdylike.appspot.com/ is a site judge it contain curse word in it.
import urllib
def read_text():
quotes = open(r"C:\Users\hoge\Desktop\controller\movie_quote.txt")
contents_of_file = quotes.read()
# print(contents_of_file)
quotes.close()
check_profanity(contents_of_file)
def check_profanity(text_to_check):
connection = urllib.urlopen("http://www.wdylike.appspot.com/?q="+text_to_check)
output = connection.read()
# print(output)
connection.close()
if "true" in output:
print("Profanity Alert!")
elif "false" in output:
print("This document has no curse words")
else:
print("Could not scan the document properly.")
read_text()
when you write python, google style guide would help coding.
https://google.github.io/styleguide/pyguide.html