我正在将链接中的PDF保存到Azure Blob存储容器中的文件夹。是否可以从数据砖执行此操作?
只是一些出于隐私原因的虚拟代码:
testurl = 'https://www.testwebsite.com/test123.pdf'
response = requests.get(testurl)
with open('wasbs://[email protected]/Test Folder/Test.pdf','wb') as f:
f.write(response.content)
字符串
我在运行时得到一个错误[Errno 2] No such file or directory
。
1条答案
按热度按时间qq24tv8q1#
您可以使用
fsspec
连接到azure blob存储。安装下面的包。
pip install fsspec adlfs
个在代码下面运行。
字符串
在这里,您需要给予如下路径。
abfs://<container_name>/path_to_file
个输出量:
的数据