Skip to content

Commit 3c9728e

Browse files
Merge pull request #225621 from pauljewellmsft/pauljewell-quickstart-links
Update quickstart with dev guide links
2 parents 6108a46 + 0d80801 commit 3c9728e

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

articles/storage/blobs/storage-quickstart-blobs-python.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -220,6 +220,8 @@ Add this code to the end of the `try` block:
220220

221221
:::code language="python" source="~/azure-storage-snippets/blobs/quickstarts/python/blob-quickstart.py" id="Snippet_CreateContainer":::
222222

223+
To learn more about creating a container, and to explore more code samples, see [Create a blob container with Python](storage-blob-container-create-python.md).
224+
223225
### Upload blobs to a container
224226

225227
The following code snippet:
@@ -233,6 +235,8 @@ Add this code to the end of the `try` block:
233235

234236
:::code language="python" source="~/azure-storage-snippets/blobs/quickstarts/python/blob-quickstart.py" id="Snippet_UploadBlobs":::
235237

238+
To learn more about uploading blobs, and to explore more code samples, see [Upload a blob with Python](storage-blob-upload-python.md).
239+
236240
### List the blobs in a container
237241

238242
List the blobs in the container by calling the [list_blobs](/python/api/azure-storage-blob/azure.storage.blob.containerclient#list-blobs-name-starts-with-none--include-none----kwargs-) method. In this case, only one blob has been added to the container, so the listing operation returns just that one blob.
@@ -241,6 +245,8 @@ Add this code to the end of the `try` block:
241245

242246
:::code language="python" source="~/azure-storage-snippets/blobs/quickstarts/python/blob-quickstart.py" id="Snippet_ListBlobs":::
243247

248+
To learn more about listing blobs, and to explore more code samples, see [List blobs with Python](storage-blobs-list-python.md).
249+
244250
### Download blobs
245251

246252
Download the previously created blob by calling the [download_blob](/python/api/azure-storage-blob/azure.storage.blob.blobclient#download-blob-offset-none--length-none----kwargs-) method. The example code adds a suffix of "DOWNLOAD" to the file name so that you can see both files in local file system.
@@ -249,6 +255,8 @@ Add this code to the end of the `try` block:
249255

250256
:::code language="python" source="~/azure-storage-snippets/blobs/quickstarts/python/blob-quickstart.py" id="Snippet_DownloadBlobs":::
251257

258+
To learn more about downloading blobs, and to explore more code samples, see [Download a blob with Python](storage-blob-download-python.md).
259+
252260
### Delete a container
253261

254262
The following code cleans up the resources the app created by removing the entire container using the [​delete_container](/python/api/azure-storage-blob/azure.storage.blob.containerclient#delete-container---kwargs-) method. You can also delete the local files, if you like.
@@ -259,6 +267,8 @@ Add this code to the end of the `try` block:
259267

260268
:::code language="python" source="~/azure-storage-snippets/blobs/quickstarts/python/blob-quickstart.py" id="Snippet_CleanUp":::
261269

270+
To learn more about deleting a container, and to explore more code samples, see [Delete and restore a blob container with Python](storage-blob-container-delete-python.md).
271+
262272
## Run the code
263273

264274
This app creates a test file in your local folder and uploads it to Azure Blob Storage. The example then lists the blobs in the container, and downloads the file with a new name. You can compare the old and new files.

0 commit comments

Comments
 (0)