Posts by Daniel Serodio • 179 points
1 post
-
6
votes2
answers821
viewsA: In Python, how to get the default temporary directory?
The Talles answer is technically correct, but the ideal is to use tempfile.TemporaryFile or tempfile.NamedTemporaryFile to create the temporary file instead of concatenating the…