You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
I noticed that when upload_frame is called, a temporary csv is created (dataframe -> csv -> upload) on Windows in the Temp folder on C: drive of the user executing the code.
Is that path customizable? I'm asking because usually in a multi partition file system on Windows, like the one I am using, the C: drive is very small sized and reserved to the OS, and a temporary file in there may fill out all the space causing issues with the OS.
Thank you
The text was updated successfully, but these errors were encountered:
It just uses the standard Python tempfile package which I believe allows you to set an environment variable TMPDIR to point to a new root directory for temp files.
Hi,
I noticed that when
upload_frame
is called, a temporary csv is created (dataframe -> csv -> upload) on Windows in the Temp folder on C: drive of the user executing the code.Is that path customizable? I'm asking because usually in a multi partition file system on Windows, like the one I am using, the C: drive is very small sized and reserved to the OS, and a temporary file in there may fill out all the space causing issues with the OS.
Thank you
The text was updated successfully, but these errors were encountered: