Upload file using python requests

后端 未结 3 1646
失恋的感觉
失恋的感觉 2021-02-09 20:44

I\'ve been trying to upload a file using the box v2 api with requests.

So far I had little luck though. Maybe someone here can help me see what I\'m actually doing wrong

3条回答
  •  南方客
    南方客 (楼主)
    2021-02-09 21:32

    You need to pass 2 Python dictionaries, files and data. files are {uniqFileName:openFileObj}, and data are {uniqFileName:filename}. Below is the upload method from my box class. And remember to add a final entry in data, 'folder_id': destination_id.

    def uploadFiles(self, ufiles, folid):
        '''uploads 1 or more files in the ufiles list of tuples containing
        (src fullpath, dest name). folid is the id of the folder to
        upload to.'''
    
        furl = URL2 + 'files/data'
        data, files = {}, {}
        for i, v in enumerate(ufiles):
            ff = v[0]
            fn = v[1]
            #copy to new, renamed file in tmp folder if necessary
            #can't find a way to do this with the api
            if os.path.basename(ff) != fn:
                dest = os.path.join(TMP, fn)
                shutil.copy2(ff, dest)
                ff = dest
    
            f = open(ff, 'rb')
            k = 'filename' + str(i)
            data[k] = fn
            files[k] = f
    
        data['folder_id'] = folid
    
        res = self.session.post(furl, files=files, data=data)
    
        for k in files:
            files[k].close()
    
    
        return res.status_code
    

    Here is a sample call:

    destFol = '406600304'
    
    ret = box.uploadFile((('c:/1temp/hc.zip', 'hz.zip'),), destFol)
    

    Like I said, the above function is a method of a class, with an instance attr that holds a requests session. But you can use requests.post instead of self.session.post, and it will work just the same. Just remember to add the headers with your apikey and token if you do it outside a session.

    According to the documentation, you are supposed to be able to rename the file by giving it a new name in the data dict. But I can't make this work except by copying the src file to a temp dir with the desired name and uploading that. It's a bit of a hack, but it works.

    good luck, Mike

提交回复
热议问题