How to download a file from the box using Box API for Python

回答済み
新規投稿

コメント

1件のコメント

  • mwiller

     There are two primary methods available for downloading a file:

     

    file.content()  # returns the file contents as `bytes`
    file.download_to(writeable_stream)  # write the file contents to a stream

    Depending on what you want to do with the file contents, one of these should work for you.

    0
    コメントアクション パーマリンク

サインインしてコメントを残してください。