如何在Python中将流(来自s3存储桶的文件(pdf、ppt等)的文件流)编码为base64string,以便使用Rest API跨网络发送

发布于 2025-01-16 04:25:07 字数 874 浏览 0 评论 0原文

如何在 python 中将流(使用 boto3 从 s3 存储桶中的文件(pdf、ppt 等)的文件流)编码为 base64string 以跨网络发送

本质上如何在 python 中为下面的 c# 示例执行 base64 转换
DocumentBody = Convert.ToBase64String(字节)

private void UploadDocumentsToEntity(Entity entity, Byte[] bytes, string fileName, string documentDescription, SystemUser systemUser)
    {
        Annotation setupAnnotation = new Annotation()
        {
            Subject = documentDescription, //"Entity - Document Attachment" + fileName
            FileName = fileName,
            DocumentBody = Convert.ToBase64String(bytes),
            MimeType = GetMimeType(fileName),
            ObjectId = new EntityReference(entity.LogicalName, entity.Id),
            OwnerId = new EntityReference("systemuser", systemUser.Id)
        };

        Guid annotationId = _serviceProxy.Create(setupAnnotation);
    }

How to encode a stream (filestream of a file (pdf, ppt etcc.) from s3 bucket using boto3) to base64string in python for sending across network

In essential how to do the base64 conversion below in python for c# sample below
DocumentBody = Convert.ToBase64String(bytes)

private void UploadDocumentsToEntity(Entity entity, Byte[] bytes, string fileName, string documentDescription, SystemUser systemUser)
    {
        Annotation setupAnnotation = new Annotation()
        {
            Subject = documentDescription, //"Entity - Document Attachment" + fileName
            FileName = fileName,
            DocumentBody = Convert.ToBase64String(bytes),
            MimeType = GetMimeType(fileName),
            ObjectId = new EntityReference(entity.LogicalName, entity.Id),
            OwnerId = new EntityReference("systemuser", systemUser.Id)
        };

        Guid annotationId = _serviceProxy.Create(setupAnnotation);
    }

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

握住你手 2025-01-23 04:25:07

我们只是做

base64_string = base64.b64encode(bytes).decode('utf-8')

we simply do

base64_string = base64.b64encode(bytes).decode('utf-8')
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文