Gary Culshaw

  • Total activity 3
  • Last activity
  • Member since
  • Following 0 users
  • Followed by 0 users
  • Votes 0
  • Subscriptions 1

Activity overview

Latest activity by Gary Culshaw
  • Gary Culshaw commented,

    I have the answer!       csv_string = df.to_csv(index=False)    stream = StringIO()    stream.write(csv_string)    stream.seek(0)    new_file = client.folder(Box_Folder_ID).upload_stream(stream,Nam...

  • Gary Culshaw created a post,

    Uploading Data (not a file) to a Box file

    Completed

    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_...