Gary Culshaw

  • Activité totale 3
  • Dernière activité
  • Membre depuis
  • Abonné à 0 utilisateur
  • Abonnés 0 utilisateur
  • Votes 0
  • Abonnements 1

Aperçu des activités

Dernière activité effectuée par Gary Culshaw
  • Gary Culshaw a ajouté un commentaire,

    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 a créé une publication,

    Uploading Data (not a file) to a Box file

    Terminée

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