Skip to content

philippslang/azblob

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

29 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Azure Blob

PyPI version Code style: black

One-line CLI to download from Azure blob storage. Supports private blobs.

Installation

To install:

$ pip install azblob

CLI

Download blob (and authentication illustration)

Anonymous access, account name from command line

$ azblob -n account_url download my_container my_blob

where account_url is e.g. https://<storage name>.blob.core.windows.net Anonymous access, account name from environment

$ export AZBLOB_ACCOUNTNAME=account_url
$ azblob download my_container my_blob

Private container, credentials from command line

$ azblob -n account_url -k my_key download my_container my_blob

Private container, credentials from environment

$ export AZBLOB_ACCOUNTNAME=account_url
$ export AZBLOB_ACCOUNTKEY=my_key
$ azblob download my_container my_blob

List blobs

Same authentication mechanism. List blobs in my_container

azblob list my_container

and, as always

$ azblob -h
$ azblob download -h
$ azblob list -h