Python – writing and reading from a temporary file
You’ve got a scope problem; the file tmp only exists within the scope of the with statement which creates it. Additionally, you’ll need to use a NamedTemporaryFile if you want to access the file later outside of the initial with (this gives the OS the ability to access the file). Also, I’m not sure why … Read more