I have a python script that relies on over 400 .txt
files (with HUGE dictionaries
, so much so it needs to choose each one by itself and only load one at a time). How could I make an exe
file from the python script that will come with the .txt
files? I've looked at both pyInstaller and py2exe but nothing I see I understand/works for me?
Thank you in advance
EDIT: The text files have sensitive data in them, would it be possible for them to be only accessible by the python script itself?