We have a dataset in Power BI that we want to upload to a file in Box. It is able to be done if we first store the data into a file, so then the file can be uploaded to Box.
eg:
df.to_csv(out_file_name)
new_file = client.folder(Box_Folder_ID).upload(out_file_name)
What if we don't want to save it to a temporary file. We just want to directly put the dataset data into a file in Box? Is that possible.?