page_type | languages | products | description | urlFragment | |||
---|---|---|---|---|---|---|---|
sample |
|
|
How to upload and download blobs from Azure Blob Storage with Python. |
upload-download-blobs-python |
- Create a Storage Account using the Azure Portal.
- Create a container.
- Upload a file to block blob.
- List blobs.
- Download a blob to file.
- Delete a blob.
- Delete the container.
If you don't have an Azure subscription, create a free account before you begin.
Step 1 : Create a new general-purpose Storage Account to use for this tutorial.
- Go to the Azure Portal and log in using your Azure account.
- Select New > Storage > Storage account.
- Select your Subscription.
- For
Resource group
, create a new one and give it a unique name. - Enter a name for your storage Account.
- Select the
Location
to use for your Storage Account. - Set
Account kind
to StorageV2(general purpose v2). - Set
Performance
to Standard. - Set
Replication
to Locally-redundant storage (LRS). - Set
Secure transfer required
to Disabled. - Check Review + create and click Create to create your Storage Account.
Step 2 : Copy and save Connection string.
After your Storage Account is created. Click on it to open it. Select Settings > Access keys > Key1/key, copy the associated Connection string to the clipboard, then paste it into a text editor for later use.
This solution requires a connection string be stored in an environment variable securely on the machine running the sample. Follow one of the examples below depending on your operating system to create the environment variable. If using Windows close your open IDE or shell and restart it to be able to read the environment variable.
Linux
export AZURE_STORAGE_CONNECTIONSTRING="<YourConnectionString>"
Windows
setx AZURE_STORAGE_CONNECTIONSTRING "<YourConnectionString>"
First, clone the repository on your machine:
git clone https://github.com/Azure-Samples/azure-sdk-for-python-storage-blob-upload-download.git
Then, install the dependencies:
pip install -r requirements.txt
Finally, execute the following command to run this sample:
python example.py
The storage SDK package version here is 2.x.x, if you are using the latest version of the storage SDK package, please reference to the following examples:
- blob_samples_hello_world.py - Examples for common Storage Blob tasks:
- Create a container
- Create a block, page, or append blob
- Upload a file to blob
- Download a blob
- Delete a blob
- Delete the container
- blob_samples_enumerate_blobs.py- Examples to enumerate blobs
- List blobs.
This project welcomes contributions and suggestions. Most contributions require you to agree to a Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us the rights to use your contribution. For details, visit https://cla.microsoft.com.
When you submit a pull request, a CLA-bot will automatically determine whether you need to provide a CLA and decorate the PR appropriately (e.g., label, comment). Simply follow the instructions provided by the bot. You will only need to do this once across all repos using our CLA.
This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact opencode@microsoft.com with any additional questions or comments.