Quickstart
Install this package:
pip install ezazure
Put your Azure connection string and container name in a
.ezazurefile:connection_str: AZURE_CONNECTION_STRING container: CONTAINER_NAME
Run from the command line either of the following:
python -m ezazure --upload FNAME python -m ezazure --download FNAME
ezazuresupports regex pattern matching:python -m ezazure --upload --regex FNAME[0-9]+ python -m ezazure --download --regex FNAME.*
You can also use this package as an API:
from ezazure import Azure azure = Azure() azure.upload(fname) azure.download(fname)