python将dataframe写入csv_将Python DataFrame以CSV格式写入Azure Blob

博客围绕Python与Azure Blob的数据读写展开,提出两个问题:一是如何将Python的dataframe直接以csv格式写入Azure Blob而不本地存储;二是如何直接将Azure Blob存储中的json文件读取到Python中,并给出了相应的示例代码和输出结果。
Python3.9

Python3.9

Conda
Python

Python 是一种高级、解释型、通用的编程语言,以其简洁易读的语法而闻名,适用于广泛的应用,包括Web开发、数据分析、人工智能和自动化脚本

I got two questions on reading and writing Python objects from/to Azure blob.

1) Can someone tell me how to write Python dataframe as csv file directly into Azure Blob without storing it locally?

I tried using the functions create_blob_from_text & create_blob_from_stream

but none of them works.

Converting dataframe to string and using create_blob_from_text function

writes the file into the blob but as a plain string but not as csv.

df_b = df.to_string()

block_blob_service.create_blob_from_text('test', 'OutFilePy.csv', df_b)

2) How to directly read a json file in Azure blob storage directly into Python?

解决方案1) Can someone tell me how to write Python dataframe as csv file

directly into Azure Blob without storing it locally?

Sample code:

from azure.storage.blob import (

BlockBlobService

)

import pandas as pd

import io

output = io.StringIO()

head = ["col1" , "col2" , "col3"]

l = [[1 , 2 , 3],[4,5,6] , [8 , 7 , 9]]

df = pd.DataFrame (l , columns = head)

print df

output = df.to_csv (index_label="idx", encoding = "utf-8")

print(output)

accountName = "***"

accountKey = "***"

containerName = "test1"

blobName = "test3.json"

blobService = BlockBlobService(account_name=accountName, account_key=accountKey)

blobService.create_blob_from_text('test1', 'OutFilePy.csv', output)

Output result:

2.How to directly read a json file in Azure blob storage directly into Python?

Sample code:

from azure.storage.blob import (

BlockBlobService

)

accountName = "***"

accountKey = "***"

containerName = "test1"

blobName = "test3.json"

blobService = BlockBlobService(account_name=accountName, account_key=accountKey)

result = blobService.get_blob_to_text(containerName,blobName)

print(result.content)

Output result:

Hope it helps you.

您可能感兴趣的与本文相关的镜像

Python3.9

Python3.9

Conda
Python

Python 是一种高级、解释型、通用的编程语言,以其简洁易读的语法而闻名,适用于广泛的应用,包括Web开发、数据分析、人工智能和自动化脚本

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值