You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/storage/blobs/storage-quickstart-blobs-python.md
+12-12Lines changed: 12 additions & 12 deletions
Original file line number
Diff line number
Diff line change
@@ -41,7 +41,7 @@ This command clones the *Azure-Samples/storage-blobs-python-quickstart* reposito
41
41
In the application, provide your storage account name and account key to create a `BlockBlobService` object. Open the *example.py* file from the Solution Explorer in your IDE. Replace the `accountname` and `accountkey` values with your account name and key.
@@ -88,11 +88,11 @@ Once you have the Cloud Blob container, instantiate the **CloudBlockBlob** objec
88
88
In this section, you instantiate the objects, create a new container, and then set permissions on the container so the blobs are public. The container is called **quickstartblobs**.
89
89
90
90
```python
91
-
# Create the BlockBlockService that is used to call the Blob service for the storage account
@@ -133,7 +133,7 @@ Block blobs can be as large as 4.7 TB, and can be anything from Excel spreadshee
133
133
Get a list of files in the container with the `list_blobs` method. This method returns a generator. The following code retrieves the list of blobs—then loops through them—showing the names of the blobs found in a container.
If you no longer need the blobs uploaded in this quickstart, you can delete the entire container using the `delete_container` method. To delete individual files instead, use the `delete_blob` method.
158
158
159
159
```python
160
-
# Clean up resources. This includes the container and the temp files
160
+
# Clean up resources. This includes the container and the temp files.
0 commit comments