python Babl模块dropbox上传方法

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python Babl模块dropbox上传方法相关的知识,希望对你有一定的参考价值。

def upload(dbx, data, path, overwrite=False):
    """Upload a file.
    Return the request response, or None in case of error.
    """
    mode = (dropbox.files.WriteMode.overwrite
                    if overwrite
                    else dropbox.files.WriteMode.add)

    try:
        res = dbx.files_upload(data, path, mode)
    except dropbox.exceptions.ApiError as err:
            print('*** API error', err)
            return None

    return res

以上是关于python Babl模块dropbox上传方法的主要内容,如果未能解决你的问题,请参考以下文章

python dropbox babl模块依赖项

python Babl模块完整主程序

从 python 脚本上传文件到我的 Dropbox

python Dropbox到S3图片上传

Dropbox网盘 文件上传过慢失败

使用 Dropbox API V2 + Cordova 将文件上传到 Dropbox