Skip to content

Commit 7f55979

Browse files
committed
Improved comments
1 parent 47fbde2 commit 7f55979

File tree

7 files changed

+13
-13
lines changed

7 files changed

+13
-13
lines changed

azureblobstoragecreate/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -118,14 +118,14 @@ Create a new Blob Storage container in an Azure storage account.
118118
119119
* Run the code.
120120
121-
You must provide 1 parameter:
121+
You must provide 1 parameter, replace the value of:
122122
123-
* `<CONTAINER_NAME>` = Name of the container
123+
* `<CONTAINER_NAME>` by name of the container.
124124
125125
Run application:
126126
127127
```bash
128-
python blobstoragecreate.py container-example
128+
python blobstoragecreate.py <CONTAINER_NAME>
129129
```
130130
131131
* Test the application.

azureblobstoragecreate/blobstoragecreate.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ def load_cfg():
3030

3131
def create_container(storage_account_conn_str, container_name):
3232
"""
33-
Create a new Blob Storage container
33+
Create a new Blob Storage container.
3434
"""
3535
# Create the BlobServiceClient object which will be used to create a container client
3636
blob_service_client = BlobServiceClient.from_connection_string(storage_account_conn_str)

azureblobstoragedelete/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -118,14 +118,14 @@ Delete a Blob Storage container in an Azure storage account.
118118
119119
* Run the code.
120120
121-
You must provide 1 parameter:
121+
You must provide 1 parameter, replace the value of:
122122
123-
* `<CONTAINER_NAME>` = Name of the container
123+
* `<CONTAINER_NAME>` by name of the container
124124
125125
Run application:
126126
127127
```bash
128-
python blobstoragedelete.py container-example
128+
python blobstoragedelete.py <CONTAINER_NAME>
129129
```
130130
131131
* Test the application.

azureblobstoragedelete/blobstoragedelete.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ def load_cfg():
3030

3131
def delete_container(storage_account_conn_str, container_name):
3232
"""
33-
Delete a Blob Storage container
33+
Delete a Blob Storage container.
3434
"""
3535
try:
3636
# Create the container object

azureblobstoragelist/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -118,14 +118,14 @@ List information about the blobs in a Blob Storage container in an Azure storage
118118
119119
* Run the code.
120120
121-
You must provide 1 parameter:
121+
You must provide 1 parameter, replace the value of:
122122
123-
* `<CONTAINER_NAME>` = Name of the container
123+
* `<CONTAINER_NAME>` by name of the container.
124124
125125
Run application:
126126
127127
```bash
128-
python blobstoragelist.py container-example
128+
python blobstoragelist.py <CONTAINER_NAME>
129129
```
130130
131131
* Test the application.

azureblobstoragelist/blobstoragelist.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ def load_cfg():
3030

3131
def list_container_blobs(storage_account_conn_str, container_name):
3232
"""
33-
List the blobs in a container in a storage account
33+
List the blobs in a container in a storage account.
3434
"""
3535
try:
3636
# Create the container object

azureblobstoragelistall/blobstoragelistall.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ def load_cfg():
2828

2929
def list_containers(storage_account_conn_str):
3030
"""
31-
List the containers and the blobs they contain in a storage account
31+
List the containers and the blobs they contain in a storage account.
3232
"""
3333
# Create the BlobServiceClient object which will be used to create a container client
3434
blob_service_client = BlobServiceClient.from_connection_string(storage_account_conn_str)

0 commit comments

Comments
 (0)