My web app tries to call:
WORDLIST_FILENAME = "words.txt"
then
inFile = open(WORDLIST_FILENAME, 'r', 0)
I have words.txt uploaded to my mysite directory, how do I point to it?
I also attempt to call:
import random
import string
Can I do this with flask or do I need to do something else first?
Thanks.