Access Azure blog storage from within an Azure ML experiment
Azure ML Experiments provide ways to read and write CSV files to Azure blob storage through the Reader and Writer modules. However, I need to write a JSON file to blob storage. Since there is no module to do so, I'm trying to do so from within an Execute Python Script module. # Import the necessary items from azure.storage.blob import BlobService def azureml_main(dataframe1 = None, dataframe2 = None): account_name = 'mystorageaccount' account_key='mykeyhere==' json_string='{jsonstring here}' blob_service = BlobService(account_name, account_key) blob_service.put_block_blob_from_text("upload",