Last active
September 26, 2018 13:52
-
-
Save johnsloper/a1c5382e7ba7a2e989534e6a768a226c to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# First, get the clients | |
from azure.storage.blob import BlockBlobService | |
container = "mycontainer" | |
account_name = secrets["blob_account_name"] | |
account_key = secrets["blob_key"] | |
block_blob_service = BlockBlobService(account_name, account_key) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment