TTF

Results 4 comments of TTF

hi @vgrem, I am facing this issue as well, can I get your help? Thanks! ``` import os from office365.sharepoint.client_context import ClientContext from office365.runtime.auth.authentication_context import AuthenticationContext app_settings = { 'url':...

hi @toomax10, thanks for spending your time to help. I have reduced the size_chunk but still facing this error. I am trying to upload a csv file. How do I...

i am working on linux environment. setting the csv file in the same path of py code still giving the same error

found the solution ``` with open(local_path, 'rb') as f: uploaded_file = target_folder.files.create_upload_session(f, size_chunk,print_upload_progress).execute_query() ``` change to `uploaded_file = target_folder.files.create_upload_session(local_path, size_chunk,print_upload_progress).execute_query()`