Is it bad practice to use a forever loop in pythonista? I ask because I used the def download_file function from the omz dropbox file picker script in my own script. It worked great except once my program completed it's start up code and entered the while loop, I had issues with the downloaded file.
If I downloaded a file using omz's DropBox script in the while loop and then tried to read it using f = open('file_name') outside the while loop, it would not read or see the file. Can I only read the file in the same scope I downloaded it? I could open it inside the while loop, however.