azure-storage-blob 12.24.0b1__py3-none-any.whl → 12.24.1__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (30) hide show
  1. azure/storage/blob/_blob_client.py +6 -3
  2. azure/storage/blob/_download.py +2 -2
  3. azure/storage/blob/_generated/aio/operations/_append_blob_operations.py +4 -4
  4. azure/storage/blob/_generated/aio/operations/_blob_operations.py +33 -33
  5. azure/storage/blob/_generated/aio/operations/_block_blob_operations.py +7 -7
  6. azure/storage/blob/_generated/aio/operations/_container_operations.py +18 -18
  7. azure/storage/blob/_generated/aio/operations/_page_blob_operations.py +11 -11
  8. azure/storage/blob/_generated/aio/operations/_service_operations.py +8 -8
  9. azure/storage/blob/_generated/operations/_append_blob_operations.py +4 -4
  10. azure/storage/blob/_generated/operations/_blob_operations.py +33 -33
  11. azure/storage/blob/_generated/operations/_block_blob_operations.py +7 -7
  12. azure/storage/blob/_generated/operations/_container_operations.py +18 -18
  13. azure/storage/blob/_generated/operations/_page_blob_operations.py +11 -11
  14. azure/storage/blob/_generated/operations/_service_operations.py +8 -8
  15. azure/storage/blob/_models.py +1 -1
  16. azure/storage/blob/_shared/authentication.py +1 -1
  17. azure/storage/blob/_shared/base_client.py +1 -1
  18. azure/storage/blob/_shared/parser.py +2 -10
  19. azure/storage/blob/_shared/policies_async.py +2 -2
  20. azure/storage/blob/_shared/request_handlers.py +3 -4
  21. azure/storage/blob/_shared/response_handlers.py +2 -2
  22. azure/storage/blob/_shared/shared_access_signature.py +2 -2
  23. azure/storage/blob/_version.py +1 -1
  24. azure/storage/blob/aio/_blob_client_async.py +6 -3
  25. azure/storage/blob/aio/_download_async.py +3 -3
  26. {azure_storage_blob-12.24.0b1.dist-info → azure_storage_blob-12.24.1.dist-info}/METADATA +20 -20
  27. {azure_storage_blob-12.24.0b1.dist-info → azure_storage_blob-12.24.1.dist-info}/RECORD +30 -30
  28. {azure_storage_blob-12.24.0b1.dist-info → azure_storage_blob-12.24.1.dist-info}/WHEEL +1 -1
  29. {azure_storage_blob-12.24.0b1.dist-info → azure_storage_blob-12.24.1.dist-info}/LICENSE +0 -0
  30. {azure_storage_blob-12.24.0b1.dist-info → azure_storage_blob-12.24.1.dist-info}/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: azure-storage-blob
3
- Version: 12.24.0b1
3
+ Version: 12.24.1
4
4
  Summary: Microsoft Azure Blob Storage Client Library for Python
5
5
  Home-page: https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/storage/azure-storage-blob
6
6
  Author: Microsoft Corporation
@@ -42,7 +42,7 @@ Blob storage is ideal for:
42
42
  | [Package (PyPI)](https://pypi.org/project/azure-storage-blob/)
43
43
  | [Package (Conda)](https://anaconda.org/microsoft/azure-storage/)
44
44
  | [API reference documentation](https://aka.ms/azsdk-python-storage-blob-ref)
45
- | [Product documentation](https://docs.microsoft.com/azure/storage/)
45
+ | [Product documentation](https://learn.microsoft.com/azure/storage/)
46
46
  | [Samples](https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/storage/azure-storage-blob/samples)
47
47
 
48
48
 
@@ -51,7 +51,7 @@ Blob storage is ideal for:
51
51
  ### Prerequisites
52
52
  * Python 3.8 or later is required to use this package. For more details, please read our page on [Azure SDK for Python version support policy](https://github.com/Azure/azure-sdk-for-python/wiki/Azure-SDKs-Python-version-support-policy).
53
53
  * You must have an [Azure subscription](https://azure.microsoft.com/free/) and an
54
- [Azure storage account](https://docs.microsoft.com/azure/storage/common/storage-account-overview) to use this package.
54
+ [Azure storage account](https://learn.microsoft.com/azure/storage/common/storage-account-overview) to use this package.
55
55
 
56
56
  ### Install the package
57
57
  Install the Azure Storage Blobs client library for Python with [pip](https://pypi.org/project/pip/):
@@ -62,9 +62,9 @@ pip install azure-storage-blob
62
62
 
63
63
  ### Create a storage account
64
64
  If you wish to create a new storage account, you can use the
65
- [Azure Portal](https://docs.microsoft.com/azure/storage/common/storage-quickstart-create-account?tabs=azure-portal),
66
- [Azure PowerShell](https://docs.microsoft.com/azure/storage/common/storage-quickstart-create-account?tabs=azure-powershell),
67
- or [Azure CLI](https://docs.microsoft.com/azure/storage/common/storage-quickstart-create-account?tabs=azure-cli):
65
+ [Azure Portal](https://learn.microsoft.com/azure/storage/common/storage-quickstart-create-account?tabs=azure-portal),
66
+ [Azure PowerShell](https://learn.microsoft.com/azure/storage/common/storage-quickstart-create-account?tabs=azure-powershell),
67
+ or [Azure CLI](https://learn.microsoft.com/azure/storage/common/storage-quickstart-create-account?tabs=azure-cli):
68
68
 
69
69
  ```bash
70
70
  # Create a new resource group to hold the storage account -
@@ -89,9 +89,9 @@ service = BlobServiceClient(account_url="https://<my-storage-account-name>.blob.
89
89
 
90
90
  #### Looking up the account URL
91
91
  You can find the storage account's blob service URL using the
92
- [Azure Portal](https://docs.microsoft.com/azure/storage/common/storage-account-overview#storage-account-endpoints),
93
- [Azure PowerShell](https://docs.microsoft.com/powershell/module/az.storage/get-azstorageaccount),
94
- or [Azure CLI](https://docs.microsoft.com/cli/azure/storage/account?view=azure-cli-latest#az-storage-account-show):
92
+ [Azure Portal](https://learn.microsoft.com/azure/storage/common/storage-account-overview#storage-account-endpoints),
93
+ [Azure PowerShell](https://learn.microsoft.com/powershell/module/az.storage/get-azstorageaccount),
94
+ or [Azure CLI](https://learn.microsoft.com/cli/azure/storage/account?view=azure-cli-latest#az-storage-account-show):
95
95
 
96
96
  ```bash
97
97
  # Get the blob service account url for the storage account
@@ -100,8 +100,8 @@ az storage account show -n my-storage-account-name -g my-resource-group --query
100
100
 
101
101
  #### Types of credentials
102
102
  The `credential` parameter may be provided in a number of different forms, depending on the type of
103
- [authorization](https://docs.microsoft.com/azure/storage/common/storage-auth) you wish to use:
104
- 1. To use an [Azure Active Directory (AAD) token credential](https://docs.microsoft.com/azure/storage/common/storage-auth-aad),
103
+ [authorization](https://learn.microsoft.com/azure/storage/common/storage-auth) you wish to use:
104
+ 1. To use an [Azure Active Directory (AAD) token credential](https://learn.microsoft.com/azure/storage/common/storage-auth-aad),
105
105
  provide an instance of the desired credential type obtained from the
106
106
  [azure-identity](https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/identity/azure-identity#credentials) library.
107
107
  For example, [DefaultAzureCredential](https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/identity/azure-identity#defaultazurecredential)
@@ -109,8 +109,8 @@ The `credential` parameter may be provided in a number of different forms, depen
109
109
 
110
110
  This requires some initial setup:
111
111
  * [Install azure-identity](https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/identity/azure-identity#install-the-package)
112
- * [Register a new AAD application](https://docs.microsoft.com/azure/active-directory/develop/quickstart-register-app) and give permissions to access Azure Storage
113
- * [Grant access](https://docs.microsoft.com/azure/storage/common/storage-auth-aad-rbac-portal) to Azure Blob data with RBAC in the Azure Portal
112
+ * [Register a new AAD application](https://learn.microsoft.com/azure/active-directory/develop/quickstart-register-app) and give permissions to access Azure Storage
113
+ * [Grant access](https://learn.microsoft.com/azure/storage/common/storage-auth-aad-rbac-portal) to Azure Blob data with RBAC in the Azure Portal
114
114
  * Set the values of the client ID, tenant ID, and client secret of the AAD application as environment variables:
115
115
  AZURE_TENANT_ID, AZURE_CLIENT_ID, AZURE_CLIENT_SECRET
116
116
 
@@ -126,7 +126,7 @@ The `credential` parameter may be provided in a number of different forms, depen
126
126
  )
127
127
  ```
128
128
 
129
- 2. To use a [shared access signature (SAS) token](https://docs.microsoft.com/azure/storage/common/storage-sas-overview),
129
+ 2. To use a [shared access signature (SAS) token](https://learn.microsoft.com/azure/storage/common/storage-sas-overview),
130
130
  provide the token as a string. If your account URL includes the SAS token, omit the credential parameter.
131
131
  You can generate a SAS token from the Azure Portal under "Shared access signature" or use one of the `generate_sas()`
132
132
  functions to create a sas token for the storage account, container, or blob:
@@ -146,7 +146,7 @@ The `credential` parameter may be provided in a number of different forms, depen
146
146
  blob_service_client = BlobServiceClient(account_url="https://<my_account_name>.blob.core.windows.net", credential=sas_token)
147
147
  ```
148
148
 
149
- 3. To use a storage account [shared key](https://docs.microsoft.com/rest/api/storageservices/authenticate-with-shared-key/)
149
+ 3. To use a storage account [shared key](https://learn.microsoft.com/rest/api/storageservices/authenticate-with-shared-key/)
150
150
  (aka account key or access key), provide the key as a string. This can be found in the Azure Portal under the "Access Keys"
151
151
  section or by running the following Azure CLI command:
152
152
 
@@ -166,7 +166,7 @@ The `credential` parameter may be provided in a number of different forms, depen
166
166
  credential={"account_name": "<your_account_name>", "account_key":"<account_access_key>"})
167
167
  ```
168
168
 
169
- 4. To use [anonymous public read access](https://docs.microsoft.com/azure/storage/blobs/storage-manage-access-to-resources),
169
+ 4. To use [anonymous public read access](https://learn.microsoft.com/azure/storage/blobs/storage-manage-access-to-resources),
170
170
  simply omit the credential parameter.
171
171
 
172
172
  #### Creating the client from a connection string
@@ -227,13 +227,13 @@ objects are async context managers and define async `close` methods.
227
227
 
228
228
  ### Blob Types
229
229
  Once you've initialized a Client, you can choose from the different types of blobs:
230
- * [Block blobs](https://docs.microsoft.com/rest/api/storageservices/understanding-block-blobs--append-blobs--and-page-blobs#about-block-blobs)
230
+ * [Block blobs](https://learn.microsoft.com/rest/api/storageservices/understanding-block-blobs--append-blobs--and-page-blobs#about-block-blobs)
231
231
  store text and binary data, up to approximately 4.75 TiB. Block blobs are made up of blocks of data that can be
232
232
  managed individually
233
- * [Append blobs](https://docs.microsoft.com/rest/api/storageservices/understanding-block-blobs--append-blobs--and-page-blobs#about-append-blobs)
233
+ * [Append blobs](https://learn.microsoft.com/rest/api/storageservices/understanding-block-blobs--append-blobs--and-page-blobs#about-append-blobs)
234
234
  are made up of blocks like block blobs, but are optimized for append operations. Append blobs are ideal for scenarios
235
235
  such as logging data from virtual machines
236
- * [Page blobs](https://docs.microsoft.com/rest/api/storageservices/understanding-block-blobs--append-blobs--and-page-blobs#about-page-blobs)
236
+ * [Page blobs](https://learn.microsoft.com/rest/api/storageservices/understanding-block-blobs--append-blobs--and-page-blobs#about-page-blobs)
237
237
  store random access files up to 8 TiB in size. Page blobs store virtual hard drive (VHD) files and serve as disks for
238
238
  Azure virtual machines
239
239
 
@@ -490,7 +490,7 @@ Several Storage Blobs Python SDK samples are available to you in the SDK's GitHu
490
490
  * Delete a single file or recursively delete a directory
491
491
 
492
492
  ### Additional documentation
493
- For more extensive documentation on Azure Blob storage, see the [Azure Blob storage documentation](https://docs.microsoft.com/azure/storage/blobs/) on docs.microsoft.com.
493
+ For more extensive documentation on Azure Blob storage, see the [Azure Blob storage documentation](https://learn.microsoft.com/azure/storage/blobs/) on learn.microsoft.com.
494
494
 
495
495
  ## Contributing
496
496
  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.
@@ -1,21 +1,21 @@
1
1
  azure/storage/blob/__init__.py,sha256=2i-4BEmEBQ_qSjF2BfwSyrZXr2s75WgoZlQ6BY8loxI,10694
2
- azure/storage/blob/_blob_client.py,sha256=Sam-q9xrObpYf1AYbd-2BUeWmWdD1jhcgyd4VxLa5nc,186483
2
+ azure/storage/blob/_blob_client.py,sha256=LAECeCpfRYcomuqN1IwobxeENl0KjW5K5jNFuUI0u-I,186799
3
3
  azure/storage/blob/_blob_client_helpers.py,sha256=-6jDMJB0aUFg7my8WjujiZMkCfU8-0NR3V1_qD9BafE,52033
4
4
  azure/storage/blob/_blob_service_client.py,sha256=R2LlyarEBRKMSxkijtysTtBdERQHS05S5rf4e918yQ4,40331
5
5
  azure/storage/blob/_blob_service_client_helpers.py,sha256=8jNCrF5rsgdJyAJQTdRR_mcOYuDCw4Nt9AirZk2RYUY,997
6
6
  azure/storage/blob/_container_client.py,sha256=y4YVT03RbBDx1KnKLCR7krunnZASfpNe1oJYkDRJvrI,84635
7
7
  azure/storage/blob/_container_client_helpers.py,sha256=nwn2c_RBAurLq3hgI5m_mb545rJVtCMHGGxePmVKrCs,12458
8
8
  azure/storage/blob/_deserialize.py,sha256=H-sF-bq8JSq_CCgueu5NvP5b2SeppDBpMDjHKxOnjs8,9865
9
- azure/storage/blob/_download.py,sha256=nvj_IBZuSQWV1fO2iB0n_LAndv95SRhbscuGmxu9hHE,40069
9
+ azure/storage/blob/_download.py,sha256=kJeMTL9r1ByaT2rxHBCA48gck3UmfX120h9edBMe6Kc,40088
10
10
  azure/storage/blob/_encryption.py,sha256=BCqaCshIu1QmsOfcUTmyorO76QS2p80A59LrmJBYBVw,47521
11
11
  azure/storage/blob/_lease.py,sha256=ReF0nVfZE8p_clUGpebZPprBdXJ7lOGEqXmJUhvsX5U,18336
12
12
  azure/storage/blob/_list_blobs_helper.py,sha256=ElFspHiqQ2vbRvwI9DLY7uKHgDCj1NTQ40icuCOmF0I,13124
13
- azure/storage/blob/_models.py,sha256=KXzLZejvYq0C80_g-Qh8U4LJawgGSIWwkHOkDFOVo3k,65931
13
+ azure/storage/blob/_models.py,sha256=6LOfUKH9PARguI3T9Vd17GiCK4ZWFljuzZOR2pCVaIk,65926
14
14
  azure/storage/blob/_quick_query_helper.py,sha256=HO6ufvSEWQSaFJ4CanujE4IN7FYB6y1f8PU0-dItMsk,6663
15
15
  azure/storage/blob/_serialize.py,sha256=0pcX1eJKXbvjSVugLmUG8ST5GW0M93oZXE6fPy7Yh38,8164
16
16
  azure/storage/blob/_shared_access_signature.py,sha256=bE5Nk68_S3jNZwpGKSu3vQEBmWfOahMz763E7F5Af3g,35316
17
17
  azure/storage/blob/_upload_helpers.py,sha256=-ZpqzST-wFdWqCm_I4oWGLTMQ5N0aYb3RHxaMvmf9Q4,14688
18
- azure/storage/blob/_version.py,sha256=_7KfnwRz43rfPQszo26-ca05_f8lKuXgJvSB1OmrDEg,333
18
+ azure/storage/blob/_version.py,sha256=NcAfMrw_hsGQRvP9zI__gMSR1KF1wQ87ypMcyeGJjiA,331
19
19
  azure/storage/blob/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
20
20
  azure/storage/blob/_generated/__init__.py,sha256=J2H2yiFhRSsMCNKUI7gaYFIQ4_AAbWjPtzXdOsHFQFI,835
21
21
  azure/storage/blob/_generated/_azure_blob_storage.py,sha256=7sOmpoyQp3IPkihUSt7aYI0k24heUthmUvcPuN5nxjQ,5737
@@ -28,37 +28,37 @@ azure/storage/blob/_generated/aio/_azure_blob_storage.py,sha256=RjkAL6eeIugJfn-Z
28
28
  azure/storage/blob/_generated/aio/_configuration.py,sha256=ybj0y3hyHcHSqaoA0yJ86ng0p8ZoJZOj6pEEF3aCKV4,2576
29
29
  azure/storage/blob/_generated/aio/_patch.py,sha256=MdyWs5y2w9_vYRWulELR-RV2uRYkjYpdB7nTVz2tVY4,1532
30
30
  azure/storage/blob/_generated/aio/operations/__init__.py,sha256=a5HiO2T3KzSSX8reO6fCwbKcwXqd0A6GIeF4t63XmTA,1181
31
- azure/storage/blob/_generated/aio/operations/_append_blob_operations.py,sha256=Rp8uKv-wvm603nbDyMHgYSUrAn8vbXcMmHLl_t-4u-w,38523
32
- azure/storage/blob/_generated/aio/operations/_blob_operations.py,sha256=nksrUWJlfQKN_FaL9p3v0QeCyix0hXRZyVC_Z9iE3WI,171991
33
- azure/storage/blob/_generated/aio/operations/_block_blob_operations.py,sha256=7EjCSFea-lYZQyYrgi5pmGyfsFKHqH89suMiYmp_eeo,62874
34
- azure/storage/blob/_generated/aio/operations/_container_operations.py,sha256=JHiriA4PHikK9VuqHqzd8nOckhtBqkqmqJUcw7mZR8M,92201
35
- azure/storage/blob/_generated/aio/operations/_page_blob_operations.py,sha256=Ap2S3XfIId2IJQikVEMgGcYe0UvFugVG8dDmgLOSlss,76600
31
+ azure/storage/blob/_generated/aio/operations/_append_blob_operations.py,sha256=kYm7eyjY3IF-BC5Ysr6MO3qKraPquUlah4Ju032hxJ4,38503
32
+ azure/storage/blob/_generated/aio/operations/_blob_operations.py,sha256=FGnI2XeSIHOh2eZEH982nvE8tbHDwsZJJJWS0TPy9xo,171826
33
+ azure/storage/blob/_generated/aio/operations/_block_blob_operations.py,sha256=s_pRCAgyGms4ia9_sSfmfUmEPLLAejaOu5iSbH7BPNk,62839
34
+ azure/storage/blob/_generated/aio/operations/_container_operations.py,sha256=E-BNDGozn5r5FbFPqddgokJiJ_APY0uti9JtX-Uv7RA,92111
35
+ azure/storage/blob/_generated/aio/operations/_page_blob_operations.py,sha256=U_I-tsOzEVc_MDCCqqQopOEmh9x0dmaB9aGQmf4LG5k,76545
36
36
  azure/storage/blob/_generated/aio/operations/_patch.py,sha256=pYl0jxVFr3Yu0RHRFIgN3NwFrEZr1uL-7xbEXGgJzBw,794
37
- azure/storage/blob/_generated/aio/operations/_service_operations.py,sha256=BjQyysi0Qgu0byQjhvgF7myEPdUzAedZEil6eCW8B8s,36616
37
+ azure/storage/blob/_generated/aio/operations/_service_operations.py,sha256=PnEuFt4LQ-huXvKQYsOQ5Br8omp7IwnBJmLDNyQxKwE,36576
38
38
  azure/storage/blob/_generated/models/__init__.py,sha256=qOh_WzGPNB7Do1XSXfRosHQJ94zx1G5dVXpZdkNKLuM,6303
39
39
  azure/storage/blob/_generated/models/_azure_blob_storage_enums.py,sha256=5yADLYU9d2-QqzrvKPWszcaBWcMNgMUwCAYYUTyYix4,13146
40
40
  azure/storage/blob/_generated/models/_models_py3.py,sha256=JXhdrOvO8VKo_Vhz-cqnXI1gfDf6nkrcBDC7Cz0rL_s,110612
41
41
  azure/storage/blob/_generated/models/_patch.py,sha256=pYl0jxVFr3Yu0RHRFIgN3NwFrEZr1uL-7xbEXGgJzBw,794
42
42
  azure/storage/blob/_generated/operations/__init__.py,sha256=a5HiO2T3KzSSX8reO6fCwbKcwXqd0A6GIeF4t63XmTA,1181
43
- azure/storage/blob/_generated/operations/_append_blob_operations.py,sha256=M8bEqhMVGj9hXyUQoyrL2SplZmj248L6B81Imfow1yU,57655
44
- azure/storage/blob/_generated/operations/_blob_operations.py,sha256=AGlKkkQXliAa9-TrznCjTvPHeEgWkZ6eeiCQJj4q8gI,239264
45
- azure/storage/blob/_generated/operations/_block_blob_operations.py,sha256=z7vTKM41awI8ZnJ9c-lXppTE1RNbgdDHUt981xOOocE,94598
46
- azure/storage/blob/_generated/operations/_container_operations.py,sha256=xdcWJcGiYUmW5BFjM7gQDKv9iz6Ngw9fvKVRivPz-Vo,129827
47
- azure/storage/blob/_generated/operations/_page_blob_operations.py,sha256=mph50F8iwZlqqYW-REtyDEAhW4bSNUDMx7yHSStii5E,114459
43
+ azure/storage/blob/_generated/operations/_append_blob_operations.py,sha256=d37gqC31nD7SdwIWJnuOaq-RQGhoYFgTsMB-YQ8u0oI,57635
44
+ azure/storage/blob/_generated/operations/_blob_operations.py,sha256=RxXz-Ak67uqA9RWJrQpzkXd5jJ4L5CTHWXCIUTdISJY,239099
45
+ azure/storage/blob/_generated/operations/_block_blob_operations.py,sha256=B51sN8PeAVvihKOxAepSkCzwaxT1-4ULii7Agbdbc4A,94563
46
+ azure/storage/blob/_generated/operations/_container_operations.py,sha256=UScCS8PSdMokU6Apsb-hd_hyTKot_JOloy7NQaYYS_U,129737
47
+ azure/storage/blob/_generated/operations/_page_blob_operations.py,sha256=CILQx4kc97v0dLXRWcmGtV09jgmL4rHoXxh3NWErrFk,114404
48
48
  azure/storage/blob/_generated/operations/_patch.py,sha256=pYl0jxVFr3Yu0RHRFIgN3NwFrEZr1uL-7xbEXGgJzBw,794
49
- azure/storage/blob/_generated/operations/_service_operations.py,sha256=y4dFBV80_hvdVOFPZit_2eHi7MtbxBVj-i9oFjN-bk8,50474
49
+ azure/storage/blob/_generated/operations/_service_operations.py,sha256=kMfGzHKEtT6XhuuK49DQwzHOOSz1JgeRP9i7Oppvz1s,50434
50
50
  azure/storage/blob/_shared/__init__.py,sha256=Ohb4NSCuB9VXGEqjU2o9VZ5L98-a7c8KWZvrujnSFk8,1477
51
- azure/storage/blob/_shared/authentication.py,sha256=KfUKWkjItNJxUTWNcCNusYfnENy-XbVelHlZM8fWc0Y,9450
52
- azure/storage/blob/_shared/base_client.py,sha256=f5EQ8LkggUWw4ihlRG87jbWRxAy35JjrDd2JN2gN4EY,18516
51
+ azure/storage/blob/_shared/authentication.py,sha256=RNKYwbK-IbeZ2rPzeW5PX677NB4GZdwxmyVhb8KmskU,9445
52
+ azure/storage/blob/_shared/base_client.py,sha256=H63JVtOFT6azaZkpKQ32qcHa2Z45qMK8Lg3WwmnysK4,18526
53
53
  azure/storage/blob/_shared/base_client_async.py,sha256=cBL9V19-da0yX2KTJ8TMeg97IuYaKdk-6bGiDVpaD4Y,11850
54
54
  azure/storage/blob/_shared/constants.py,sha256=0TnhBNEaZpVq0vECmLoXWSzCajtn9WOlfOfzbMApRb4,620
55
55
  azure/storage/blob/_shared/models.py,sha256=hhTqxdmwoQgSFwM6MVxefW1MINquwP7hVg2wwgYc8io,25142
56
- azure/storage/blob/_shared/parser.py,sha256=ACpdtwf6lhzmA0ukT3PmxpGVpimVXTy_mMSdixC55R8,1955
56
+ azure/storage/blob/_shared/parser.py,sha256=ysFCyANxeSML7FMp_vJhIJABkvKVXAwb9K5jwWAR1Xk,1730
57
57
  azure/storage/blob/_shared/policies.py,sha256=efaZtY3M0fzJj-bwBGCGrToOkZi-0DEk_FZ8DPgMVNs,30777
58
- azure/storage/blob/_shared/policies_async.py,sha256=2qJHG9dkDLT2ecSfk5xNOobna-zp8VdUJ8pSf5KPJy4,13462
59
- azure/storage/blob/_shared/request_handlers.py,sha256=0G9eyzMY_8BlLfHA6jbJF75ENcu3xqZ33bHfSRi9HTM,9755
60
- azure/storage/blob/_shared/response_handlers.py,sha256=wqZ1hGRDTwh3GkRB0gPSjgm_7TP2quZc_ex4pYThW-8,9190
61
- azure/storage/blob/_shared/shared_access_signature.py,sha256=ov8h9CStKwlfZBtlj54jeckpzuVjYcYvJNKgxQByZ9o,11130
58
+ azure/storage/blob/_shared/policies_async.py,sha256=vrmQQJyw9dN_wFe0AwMTDhNGGPfZVaCQ8uIe1ubrMBk,13466
59
+ azure/storage/blob/_shared/request_handlers.py,sha256=vu516OigwcTrCzDiM_iMsILziqbwkdeLk5IH6dSbyPc,9750
60
+ azure/storage/blob/_shared/response_handlers.py,sha256=S8S8RU2GCh5EtLdO_CjenzpDKexxa3y9FN60mXmML9o,9206
61
+ azure/storage/blob/_shared/shared_access_signature.py,sha256=pWGlsRbWMNbgawlFZmTqCJQslp0SYbUCfx6eO930ul8,11123
62
62
  azure/storage/blob/_shared/uploads.py,sha256=sNjyP-WqhDTbKHHJHezbY6Rac6KdhbUCqDGn1xD72Vk,22017
63
63
  azure/storage/blob/_shared/uploads_async.py,sha256=5re4LvMHyIg8A2XgH0Rks-X1LUKBpYt6P7EgQfCWKaQ,16642
64
64
  azure/storage/blob/_shared/avro/__init__.py,sha256=Ch-mWS2_vgonM9LjVaETdaW51OL6LfG23X-0tH2AFjw,310
@@ -68,17 +68,17 @@ azure/storage/blob/_shared/avro/datafile.py,sha256=L0xC3Na0Zyg-I6lZjW8Qp6R4wvEnG
68
68
  azure/storage/blob/_shared/avro/datafile_async.py,sha256=0fSi427XEDPXbFQNrVQq70EAhpy2-jo1Ay-k4fDHO3Q,7294
69
69
  azure/storage/blob/_shared/avro/schema.py,sha256=ULeGU6lwC2Onzprt2nSnOwsjC3HJH-3S24eyPs6L6Us,36227
70
70
  azure/storage/blob/aio/__init__.py,sha256=tVgeGWdfxG32uyJxAE32waysCOGt93S_EeuQLJz7vEM,8344
71
- azure/storage/blob/aio/_blob_client_async.py,sha256=WmpWhr3m2J3lMk-0hY3XH9pTtyYJeHhhD6z45RJVK8Q,181492
71
+ azure/storage/blob/aio/_blob_client_async.py,sha256=XZA_46l_aWbMB0eIM9OVDbIpl2G_-7j66vy7rBMWKdo,181808
72
72
  azure/storage/blob/aio/_blob_service_client_async.py,sha256=D-y0VfSlg_K44VKgIGsYuySxkG1RBDF5ymz17D3P8CM,41179
73
73
  azure/storage/blob/aio/_container_client_async.py,sha256=1D5ixfete8Y5uovMOreSgClHs6KqOSe38yhpZloMA84,85290
74
- azure/storage/blob/aio/_download_async.py,sha256=zneaszZj69VblrUkWocBjvhvXedQJfJweL4uTqc9TpE,38078
74
+ azure/storage/blob/aio/_download_async.py,sha256=X0KakwoMRB53eGMMJkW7ypQWNDeapkzbeV0KKX432k0,38104
75
75
  azure/storage/blob/aio/_encryption_async.py,sha256=spbWeycNMj38H5ynZ03FRtRu0L0tnl1lQn5UJT6HMAY,2518
76
76
  azure/storage/blob/aio/_lease_async.py,sha256=T31Augs9Rp-UdwsOOHzE5U_lUGcCD-fXnpnTHAZNE3A,18611
77
77
  azure/storage/blob/aio/_list_blobs_helper.py,sha256=Cz8Cs76xu4j67OmKpED0RborDqTxcqBId7MlF5aRVVw,9851
78
78
  azure/storage/blob/aio/_models.py,sha256=RQzmFX9SMRL-Wg2LxzI2Fjhjvrpn6yUJBEoIb-mgCAI,8057
79
79
  azure/storage/blob/aio/_upload_helpers.py,sha256=zROsVN6PK2Cn59Ysq08Ide5T1IGG2yH7oK9ZCn5uQXs,14038
80
- azure_storage_blob-12.24.0b1.dist-info/LICENSE,sha256=_VMkgdgo4ToLE8y1mOAjOKNhd0BnWoYu5r3BVBto6T0,1073
81
- azure_storage_blob-12.24.0b1.dist-info/METADATA,sha256=mS5ugKjwE8o6ceT6dmrfJSU8-3YnOOGQKEIHASLW2jY,26213
82
- azure_storage_blob-12.24.0b1.dist-info/WHEEL,sha256=HiCZjzuy6Dw0hdX5R3LCFPDmFS4BWl8H-8W39XfmgX4,91
83
- azure_storage_blob-12.24.0b1.dist-info/top_level.txt,sha256=S7DhWV9m80TBzAhOFjxDUiNbKszzoThbnrSz5MpbHSQ,6
84
- azure_storage_blob-12.24.0b1.dist-info/RECORD,,
80
+ azure_storage_blob-12.24.1.dist-info/LICENSE,sha256=_VMkgdgo4ToLE8y1mOAjOKNhd0BnWoYu5r3BVBto6T0,1073
81
+ azure_storage_blob-12.24.1.dist-info/METADATA,sha256=sak4q5IhMXhgKusO5n4wPAVnnJQ9bWM-o9VWKqxaSbQ,26231
82
+ azure_storage_blob-12.24.1.dist-info/WHEEL,sha256=pL8R0wFFS65tNSRnaOVrsw9EOkOqxLrlUPenUYnJKNo,91
83
+ azure_storage_blob-12.24.1.dist-info/top_level.txt,sha256=S7DhWV9m80TBzAhOFjxDUiNbKszzoThbnrSz5MpbHSQ,6
84
+ azure_storage_blob-12.24.1.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (72.2.0)
2
+ Generator: setuptools (74.1.3)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5