Python Libraries

Python Libraries

Hi, I have two questions:

does anyone know if it is possible to import python's azure's BlockBlobService library and if so, how?

 

How to upload a processed csv file to an azure blob within the workbench (assuming it is not possible to upload the azure library I need)?

Labels (3)
0 Kudos
1 Reply

hi,
if you're running a notebook in DataRobot:
1. For any library that is not included in the pre-built python environment you can install it, just include the cell with 'pip install ...' in your notebook:
pip install azure-storage-blob
2. Then import necessary packages, for example:
from azure.storage.blob import BlobServiceClient
https://learn.microsoft.com/en-us/python/api/azure-storage-blob/azure.storage.blob.blobserviceclient...