azure-storage-blob 12.20.0__py3-none-any.whl → 12.21.0__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 (44) hide show
  1. azure/storage/blob/_blob_client.py +53 -48
  2. azure/storage/blob/_blob_service_client.py +11 -11
  3. azure/storage/blob/_container_client.py +22 -20
  4. azure/storage/blob/_download.py +277 -167
  5. azure/storage/blob/_generated/_azure_blob_storage.py +1 -1
  6. azure/storage/blob/_generated/_configuration.py +2 -2
  7. azure/storage/blob/_generated/_patch.py +2 -0
  8. azure/storage/blob/_generated/_serialization.py +1 -1
  9. azure/storage/blob/_generated/aio/_azure_blob_storage.py +1 -1
  10. azure/storage/blob/_generated/aio/_configuration.py +2 -2
  11. azure/storage/blob/_generated/aio/_patch.py +2 -0
  12. azure/storage/blob/_generated/aio/operations/_append_blob_operations.py +10 -5
  13. azure/storage/blob/_generated/aio/operations/_blob_operations.py +45 -26
  14. azure/storage/blob/_generated/aio/operations/_block_blob_operations.py +12 -7
  15. azure/storage/blob/_generated/aio/operations/_container_operations.py +39 -20
  16. azure/storage/blob/_generated/aio/operations/_page_blob_operations.py +15 -10
  17. azure/storage/blob/_generated/aio/operations/_patch.py +3 -0
  18. azure/storage/blob/_generated/aio/operations/_service_operations.py +28 -10
  19. azure/storage/blob/_generated/models/_patch.py +3 -0
  20. azure/storage/blob/_generated/operations/_append_blob_operations.py +14 -9
  21. azure/storage/blob/_generated/operations/_blob_operations.py +76 -51
  22. azure/storage/blob/_generated/operations/_block_blob_operations.py +18 -13
  23. azure/storage/blob/_generated/operations/_container_operations.py +64 -39
  24. azure/storage/blob/_generated/operations/_page_blob_operations.py +24 -19
  25. azure/storage/blob/_generated/operations/_patch.py +3 -0
  26. azure/storage/blob/_generated/operations/_service_operations.py +43 -19
  27. azure/storage/blob/_generated/py.typed +1 -0
  28. azure/storage/blob/_lease.py +5 -5
  29. azure/storage/blob/_models.py +1 -1
  30. azure/storage/blob/_serialize.py +1 -0
  31. azure/storage/blob/_shared/authentication.py +62 -4
  32. azure/storage/blob/_shared/base_client.py +1 -1
  33. azure/storage/blob/_shared/base_client_async.py +3 -2
  34. azure/storage/blob/_version.py +1 -1
  35. azure/storage/blob/aio/_blob_client_async.py +49 -46
  36. azure/storage/blob/aio/_blob_service_client_async.py +10 -10
  37. azure/storage/blob/aio/_container_client_async.py +22 -19
  38. azure/storage/blob/aio/_download_async.py +317 -209
  39. azure/storage/blob/aio/_lease_async.py +5 -5
  40. {azure_storage_blob-12.20.0.dist-info → azure_storage_blob-12.21.0.dist-info}/METADATA +6 -6
  41. {azure_storage_blob-12.20.0.dist-info → azure_storage_blob-12.21.0.dist-info}/RECORD +44 -43
  42. {azure_storage_blob-12.20.0.dist-info → azure_storage_blob-12.21.0.dist-info}/WHEEL +1 -1
  43. {azure_storage_blob-12.20.0.dist-info → azure_storage_blob-12.21.0.dist-info}/LICENSE +0 -0
  44. {azure_storage_blob-12.20.0.dist-info → azure_storage_blob-12.21.0.dist-info}/top_level.txt +0 -0
@@ -101,7 +101,7 @@ class BlobLeaseClient(LeaseClientBase):
101
101
  https://learn.microsoft.com/rest/api/storageservices/setting-timeouts-for-blob-service-operations.
102
102
  This value is not tracked or validated on the client. To configure client-side network timesouts
103
103
  see `here <https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/storage/azure-storage-blob
104
- #other-client--per-operation-configuration>`_.
104
+ #other-client--per-operation-configuration>`__.
105
105
  :rtype: None
106
106
  """
107
107
  mod_conditions = get_modify_conditions(kwargs)
@@ -158,7 +158,7 @@ class BlobLeaseClient(LeaseClientBase):
158
158
  https://learn.microsoft.com/rest/api/storageservices/setting-timeouts-for-blob-service-operations.
159
159
  This value is not tracked or validated on the client. To configure client-side network timesouts
160
160
  see `here <https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/storage/azure-storage-blob
161
- #other-client--per-operation-configuration>`_.
161
+ #other-client--per-operation-configuration>`__.
162
162
  :return: None
163
163
  """
164
164
  mod_conditions = get_modify_conditions(kwargs)
@@ -212,7 +212,7 @@ class BlobLeaseClient(LeaseClientBase):
212
212
  https://learn.microsoft.com/rest/api/storageservices/setting-timeouts-for-blob-service-operations.
213
213
  This value is not tracked or validated on the client. To configure client-side network timesouts
214
214
  see `here <https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/storage/azure-storage-blob
215
- #other-client--per-operation-configuration>`_.
215
+ #other-client--per-operation-configuration>`__.
216
216
  :return: None
217
217
  """
218
218
  mod_conditions = get_modify_conditions(kwargs)
@@ -265,7 +265,7 @@ class BlobLeaseClient(LeaseClientBase):
265
265
  https://learn.microsoft.com/rest/api/storageservices/setting-timeouts-for-blob-service-operations.
266
266
  This value is not tracked or validated on the client. To configure client-side network timesouts
267
267
  see `here <https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/storage/azure-storage-blob
268
- #other-client--per-operation-configuration>`_.
268
+ #other-client--per-operation-configuration>`__.
269
269
  :return: None
270
270
  """
271
271
  mod_conditions = get_modify_conditions(kwargs)
@@ -328,7 +328,7 @@ class BlobLeaseClient(LeaseClientBase):
328
328
  https://learn.microsoft.com/rest/api/storageservices/setting-timeouts-for-blob-service-operations.
329
329
  This value is not tracked or validated on the client. To configure client-side network timesouts
330
330
  see `here <https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/storage/azure-storage-blob
331
- #other-client--per-operation-configuration>`_.
331
+ #other-client--per-operation-configuration>`__.
332
332
  :return: Approximate time remaining in the lease period, in seconds.
333
333
  :rtype: int
334
334
  """
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: azure-storage-blob
3
- Version: 12.20.0
3
+ Version: 12.21.0
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
@@ -20,12 +20,12 @@ Classifier: License :: OSI Approved :: MIT License
20
20
  Requires-Python: >=3.8
21
21
  Description-Content-Type: text/markdown
22
22
  License-File: LICENSE
23
- Requires-Dist: azure-core (>=1.28.0)
24
- Requires-Dist: cryptography (>=2.1.4)
25
- Requires-Dist: typing-extensions (>=4.6.0)
26
- Requires-Dist: isodate (>=0.6.1)
23
+ Requires-Dist: azure-core >=1.28.0
24
+ Requires-Dist: cryptography >=2.1.4
25
+ Requires-Dist: typing-extensions >=4.6.0
26
+ Requires-Dist: isodate >=0.6.1
27
27
  Provides-Extra: aio
28
- Requires-Dist: azure-core[aio] (>=1.28.0) ; extra == 'aio'
28
+ Requires-Dist: azure-core[aio] >=1.28.0 ; extra == 'aio'
29
29
 
30
30
  # Azure Storage Blobs client library for Python
31
31
  Azure Blob storage is Microsoft's object storage solution for the cloud. Blob storage is optimized for storing massive amounts of unstructured data, such as text or binary data.
@@ -1,53 +1,54 @@
1
1
  azure/storage/blob/__init__.py,sha256=9kqgvJPkCpK6GqFM3s0grbTfmj_edWIDw0AtKfR01Lw,10586
2
- azure/storage/blob/_blob_client.py,sha256=wlPrjml4Ks7MQ1zee7NwcquEBUOUPmgzJGr7690ANSs,237035
3
- azure/storage/blob/_blob_service_client.py,sha256=2YZT472L4j5p6FPHCz2CyiP68gcDuFpVvz53nYG7fM8,41080
4
- azure/storage/blob/_container_client.py,sha256=8D9xGBbyZLBGO13rI7en_le_IJJh2d4lwFY_9u0ErSg,95700
2
+ azure/storage/blob/_blob_client.py,sha256=LLKAOJAbm8Aqy4Zvg5DtY07CplEUB3xtR8n_MU-fG20,237102
3
+ azure/storage/blob/_blob_service_client.py,sha256=wfBiWBTypNKbAtIr1qaTSlEuv6qXI1yO_S5EhLdeQTo,41091
4
+ azure/storage/blob/_container_client.py,sha256=5j2bALpHof2Gi0juTtpayGMBmqVIuBx4WtGn_UU4mB4,95722
5
5
  azure/storage/blob/_deserialize.py,sha256=HwoxR0gZmCPAHOGuVH_Zf5Zd4bPlPnEFT9Tcm2R4DJU,8876
6
- azure/storage/blob/_download.py,sha256=rVqZ3av2lmDoqYlHJY3THzSAIuJkJfuK9xf3uv3dbm4,32439
6
+ azure/storage/blob/_download.py,sha256=ndcSmvK4GEl878pTLgJEF2R_HePlzk1wZ1UTYpodJc0,38000
7
7
  azure/storage/blob/_encryption.py,sha256=tYMxIgtPZrPcalCHWDdse0WOBB0zQtps67HSFdmE4FA,46982
8
- azure/storage/blob/_lease.py,sha256=YmyVL3IYFONpwTPmvzGIggwRIk6-xuGqyq39WWKjP9M,18811
8
+ azure/storage/blob/_lease.py,sha256=67O7SUESMhm9nnxhi6MHOD9jJyAUBFFwn1Zb63SU5T4,18816
9
9
  azure/storage/blob/_list_blobs_helper.py,sha256=ccWZaWHPiSKxlnEyd6Qe-caVVFmYSrd7u-YO6Tv4PHI,14791
10
- azure/storage/blob/_models.py,sha256=pJjLrX-bLqeLU9BjokvLfihh4z51rHSimGta_pOFMr4,56949
10
+ azure/storage/blob/_models.py,sha256=7TOQR2oTVDmHbe6Za_P8DtIIrccNJg49lFXNEEljvrk,56953
11
11
  azure/storage/blob/_quick_query_helper.py,sha256=D5TlBTUVf5C8NxQjG4B5hdyHCPcQDkp27qyIonqZPE0,6369
12
- azure/storage/blob/_serialize.py,sha256=omJx6Ji8TIs3BeD-9dRAJyIc7VEVh-vV4detkjT_5Kg,8113
12
+ azure/storage/blob/_serialize.py,sha256=uOEtWAZYs2L4VE9VJ7V0m9qbJzR1p589CoUjclHUxmU,8131
13
13
  azure/storage/blob/_shared_access_signature.py,sha256=wPh-iVxJjqCYxIhLGc3SSiWrD3quYy0c5Kk6aMZG9AU,33279
14
14
  azure/storage/blob/_upload_helpers.py,sha256=ix83D7cWryDubmOibgRCA0uODNzq4X7m-dSbADdIDd0,13831
15
- azure/storage/blob/_version.py,sha256=0sos4pu7n422VpT4nfZ3hyFOqTCMNM2sje_JelVkdhY,331
15
+ azure/storage/blob/_version.py,sha256=FS3KNavIzXQpPgqciRjKI7J5WbB7uwdStEPboQ_yfN8,331
16
16
  azure/storage/blob/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
17
17
  azure/storage/blob/_generated/__init__.py,sha256=J2H2yiFhRSsMCNKUI7gaYFIQ4_AAbWjPtzXdOsHFQFI,835
18
- azure/storage/blob/_generated/_azure_blob_storage.py,sha256=6GXduWBEa3XVdCyacuIHlT-FldUj33ZYMmKyYar87pE,5716
19
- azure/storage/blob/_generated/_configuration.py,sha256=NOjdl0zuOrkiWy6VFesKoxRJJR5_NixLyWf1cwkR_d0,2566
20
- azure/storage/blob/_generated/_patch.py,sha256=sPWmWHgf_Hdx9esBYyE8rVm0CcbmDQh40ZSugcQg7YY,1530
21
- azure/storage/blob/_generated/_serialization.py,sha256=vQIv-wuCQabtiIq2DXOr7-InGADqxlXTGNEKv9OlDPs,78873
18
+ azure/storage/blob/_generated/_azure_blob_storage.py,sha256=Xpt7ZrX5n2nN0l5x8EU9tX8H1ZPaK0vOV0GEFNxhYxs,5716
19
+ azure/storage/blob/_generated/_configuration.py,sha256=PV4kKjbnHhg6nD30e_acUENnsLuEKKjYRHz1VqEk9UQ,2566
20
+ azure/storage/blob/_generated/_patch.py,sha256=MdyWs5y2w9_vYRWulELR-RV2uRYkjYpdB7nTVz2tVY4,1532
21
+ azure/storage/blob/_generated/_serialization.py,sha256=UL45pN1JUtWi96uVT5L9kbXGDtWUBHW0r4e2MeHpsKY,78893
22
22
  azure/storage/blob/_generated/_vendor.py,sha256=e3w-rd6okoiCIB8rNMtF0fehAYFWNlshwiwTsIRkEH4,778
23
+ azure/storage/blob/_generated/py.typed,sha256=dcrsqJrcYfTX-ckLFJMTaj6mD8aDe2u0tkQG-ZYxnEg,26
23
24
  azure/storage/blob/_generated/aio/__init__.py,sha256=J2H2yiFhRSsMCNKUI7gaYFIQ4_AAbWjPtzXdOsHFQFI,835
24
- azure/storage/blob/_generated/aio/_azure_blob_storage.py,sha256=tpdObKnEvBw4E_-rUOWUM6zQ8DiWWVVul1qBKyQPG4E,5859
25
- azure/storage/blob/_generated/aio/_configuration.py,sha256=sP0mR7uzrGoWePA681w_uGplK3nRNMSZxCHMLFybLms,2576
26
- azure/storage/blob/_generated/aio/_patch.py,sha256=sPWmWHgf_Hdx9esBYyE8rVm0CcbmDQh40ZSugcQg7YY,1530
25
+ azure/storage/blob/_generated/aio/_azure_blob_storage.py,sha256=79r9sIDwid96ZMyrO3u0S4UnfmR3O3g-M8JDmsTULXU,5859
26
+ azure/storage/blob/_generated/aio/_configuration.py,sha256=Q4jfjKwpMOvSe2gS9lOdvwwsHvVtsJZN37AYrf4ySgg,2576
27
+ azure/storage/blob/_generated/aio/_patch.py,sha256=MdyWs5y2w9_vYRWulELR-RV2uRYkjYpdB7nTVz2tVY4,1532
27
28
  azure/storage/blob/_generated/aio/operations/__init__.py,sha256=a5HiO2T3KzSSX8reO6fCwbKcwXqd0A6GIeF4t63XmTA,1181
28
- azure/storage/blob/_generated/aio/operations/_append_blob_operations.py,sha256=mNhm5JjYaYyL420usQ8At9yBtic47aVJ_P_OjsbUp58,37198
29
- azure/storage/blob/_generated/aio/operations/_blob_operations.py,sha256=H1vf2cWNvK9U5f2sJfM-QEE_iGFuDiEPNhN5WordKNg,165432
30
- azure/storage/blob/_generated/aio/operations/_block_blob_operations.py,sha256=M6dqhcTPziXG1JZpJynW5KQdmuo0n-JK3H-3d7o97D4,60485
31
- azure/storage/blob/_generated/aio/operations/_container_operations.py,sha256=17bdNM-BpmJgfR-7ZnRT4um_Mz3uf5lpcfLxciQqt88,89325
32
- azure/storage/blob/_generated/aio/operations/_page_blob_operations.py,sha256=n_M15k1TArkmQNaIhb2Xd_ew7MAL8DjWy8agpjxzqwA,74837
33
- azure/storage/blob/_generated/aio/operations/_patch.py,sha256=1SvcsuOv1jiGgnGbfnBlSvC7cC44hn2mkc4BEvrsiLM,791
34
- azure/storage/blob/_generated/aio/operations/_service_operations.py,sha256=sMUqROnNeyf5g2xcg21AQiX8fjyNyUKrWFg378xHaLE,34667
29
+ azure/storage/blob/_generated/aio/operations/_append_blob_operations.py,sha256=vJwsxrx2W6ZJigTPIiKshqF9uEEGvBdVeczTFOShFIs,37574
30
+ azure/storage/blob/_generated/aio/operations/_blob_operations.py,sha256=MAf_mMTpX5T6-wKjLcn_dgF4jiwJzW-zhzeTTKsKs94,167651
31
+ azure/storage/blob/_generated/aio/operations/_block_blob_operations.py,sha256=WPYthyypwq8EfgekTQpMKMIWWd6TM-TOkqW-V4oxrY0,60953
32
+ azure/storage/blob/_generated/aio/operations/_container_operations.py,sha256=fr2_IzLrRYQ3UakGkwqg4rCrhUdC9s0WJaNOrLvnO-w,91268
33
+ azure/storage/blob/_generated/aio/operations/_page_blob_operations.py,sha256=_BT4F56xZ8-nkcf9h-SbDIWwExGJ4nXpBWxPikYPFiY,75443
34
+ azure/storage/blob/_generated/aio/operations/_patch.py,sha256=pYl0jxVFr3Yu0RHRFIgN3NwFrEZr1uL-7xbEXGgJzBw,794
35
+ azure/storage/blob/_generated/aio/operations/_service_operations.py,sha256=SUJkK6dCZpVV539AHl_h0CfpKieC4qY9RJ-XcK8oFEI,36029
35
36
  azure/storage/blob/_generated/models/__init__.py,sha256=qOh_WzGPNB7Do1XSXfRosHQJ94zx1G5dVXpZdkNKLuM,6303
36
37
  azure/storage/blob/_generated/models/_azure_blob_storage_enums.py,sha256=o1I_SPnUKEsx2Aec-goLDw6eqZMyTVqFxg7tKpSYg0I,13049
37
38
  azure/storage/blob/_generated/models/_models_py3.py,sha256=JXhdrOvO8VKo_Vhz-cqnXI1gfDf6nkrcBDC7Cz0rL_s,110612
38
- azure/storage/blob/_generated/models/_patch.py,sha256=1SvcsuOv1jiGgnGbfnBlSvC7cC44hn2mkc4BEvrsiLM,791
39
+ azure/storage/blob/_generated/models/_patch.py,sha256=pYl0jxVFr3Yu0RHRFIgN3NwFrEZr1uL-7xbEXGgJzBw,794
39
40
  azure/storage/blob/_generated/operations/__init__.py,sha256=a5HiO2T3KzSSX8reO6fCwbKcwXqd0A6GIeF4t63XmTA,1181
40
- azure/storage/blob/_generated/operations/_append_blob_operations.py,sha256=vG_mPjjrfWnt2b2RJWU93yl8OEpMsz_urjBJMXnpIwg,55869
41
- azure/storage/blob/_generated/operations/_blob_operations.py,sha256=i0Wnl1sC1gRhWzBPGQrctPTLTHP_5t8BS6JafR8AZcw,231262
42
- azure/storage/blob/_generated/operations/_block_blob_operations.py,sha256=abnijLYHFwGPM2dXGeNPiFSf_JV2jC59zlic59uhpn8,91288
43
- azure/storage/blob/_generated/operations/_container_operations.py,sha256=NYX82TB4tUyJTQwQy-s6WA1tI-6CVPYzxOM8k2VtE6M,126601
44
- azure/storage/blob/_generated/operations/_page_blob_operations.py,sha256=o1jFdgm13W-zKpHB0QS1GwYFshJUAYgm82-vzmYEJaM,112235
45
- azure/storage/blob/_generated/operations/_patch.py,sha256=1SvcsuOv1jiGgnGbfnBlSvC7cC44hn2mkc4BEvrsiLM,791
46
- azure/storage/blob/_generated/operations/_service_operations.py,sha256=bUIVTpGA8Of_TYHlGYiVjyKl7Pd7Fa8n5k4kewXCR9E,48175
41
+ azure/storage/blob/_generated/operations/_append_blob_operations.py,sha256=r-BCOjTSNBma3dxqIp26wnaLDmcdADTOI6ONSimW0ew,56245
42
+ azure/storage/blob/_generated/operations/_blob_operations.py,sha256=fUtRL4dxM_UMLd0TgPXRE7E3oUqNdr_400CDT-gRqrc,233836
43
+ azure/storage/blob/_generated/operations/_block_blob_operations.py,sha256=PtQDvIhTiY6-MZ2aal2nKO9mCcKTYUPRToKNjbZAi4Q,91756
44
+ azure/storage/blob/_generated/operations/_container_operations.py,sha256=PjPuxlFz6hO_CeaZYCO7UjuESjg2OoqhXlqZAW9iPGI,128899
45
+ azure/storage/blob/_generated/operations/_page_blob_operations.py,sha256=TPUQNbsZ8GbOIizKjzc2LwclyZ4la3lRZRSk8TtViO4,112841
46
+ azure/storage/blob/_generated/operations/_patch.py,sha256=pYl0jxVFr3Yu0RHRFIgN3NwFrEZr1uL-7xbEXGgJzBw,794
47
+ azure/storage/blob/_generated/operations/_service_operations.py,sha256=CSR4vFYxQ5AmLlH8KcC8pJplcFDYWDwjtFQt-5MzPvc,49892
47
48
  azure/storage/blob/_shared/__init__.py,sha256=Ohb4NSCuB9VXGEqjU2o9VZ5L98-a7c8KWZvrujnSFk8,1477
48
- azure/storage/blob/_shared/authentication.py,sha256=ZMx-AgJ9Cac79IBC4bvFHUtkP_XJ5g6CMRo2YVOcP2M,7187
49
- azure/storage/blob/_shared/base_client.py,sha256=OT_L_9G9kZu5l4iTvxokXMYW0hln0rmOVqHnxTatdes,18500
50
- azure/storage/blob/_shared/base_client_async.py,sha256=mfNgLZZjqRGu2hTyUBDuxrXZCXK6qw_VhTEwyAfbIEo,11811
49
+ azure/storage/blob/_shared/authentication.py,sha256=KfUKWkjItNJxUTWNcCNusYfnENy-XbVelHlZM8fWc0Y,9450
50
+ azure/storage/blob/_shared/base_client.py,sha256=6hxN6QwREiK-rV0sxNym9TJltLJ1-EONZBUS-k4dwx0,18523
51
+ azure/storage/blob/_shared/base_client_async.py,sha256=Mx-9B69S9LZckRTfAjyC4avnL_A2fpurRYtxw584_cI,11886
51
52
  azure/storage/blob/_shared/constants.py,sha256=0TnhBNEaZpVq0vECmLoXWSzCajtn9WOlfOfzbMApRb4,620
52
53
  azure/storage/blob/_shared/models.py,sha256=aDydzgBj2_-WfnlT1-nOhJt-FHxOU8BG0T0K68BejNk,24907
53
54
  azure/storage/blob/_shared/parser.py,sha256=ACpdtwf6lhzmA0ukT3PmxpGVpimVXTy_mMSdixC55R8,1955
@@ -65,17 +66,17 @@ azure/storage/blob/_shared/avro/datafile.py,sha256=Mj_f7BoHjkgpMrSR1g9-RDwDv7V82
65
66
  azure/storage/blob/_shared/avro/datafile_async.py,sha256=JCUs5I3crsrFqeHenZ_fQLGj7Z2VSBjzKcI__5fd37I,7292
66
67
  azure/storage/blob/_shared/avro/schema.py,sha256=Z9qcHIEBDbXxkBBs_HYbEWHlZtAbvT302mfWCYDpADI,36201
67
68
  azure/storage/blob/aio/__init__.py,sha256=kSJ5gG-0E8-lNSrB0i23ycEArL6TGOvcZHu3BMJhST8,8113
68
- azure/storage/blob/aio/_blob_client_async.py,sha256=sH24egcPTXIZj2hIg1xNv5jsWu3GzQSaPZllKurOKOM,167321
69
- azure/storage/blob/aio/_blob_service_client_async.py,sha256=O_UhfEZxvom2oUm63xZRJte4973mSCo3LYnNLiXLZD8,38195
70
- azure/storage/blob/aio/_container_client_async.py,sha256=ylPpu6WuUQa0ekRU0zZUH_jWav4h3b701WJLGCdLA5U,77932
71
- azure/storage/blob/aio/_download_async.py,sha256=mj3wkZZNjDNBJhEJGvPjjm_EZXDB-S4y_N0XhYLXhl0,29504
69
+ azure/storage/blob/aio/_blob_client_async.py,sha256=Byu9cb3wb96wotA6qzbzFuRZW-7miIraMurlwZe0DM0,167384
70
+ azure/storage/blob/aio/_blob_service_client_async.py,sha256=ccqcE5BTfbu0yAKl1ctjgeAjIsWcrf_3YNKeun-FVzY,38205
71
+ azure/storage/blob/aio/_container_client_async.py,sha256=6SNK_nB9KTIYubWfvT8MN_4N9fUQameMKJrHLTfNwVA,77954
72
+ azure/storage/blob/aio/_download_async.py,sha256=LggqOtGoZcDpOvLqJQy8KiWJN2Isw8U20oVD0CsMHuQ,35057
72
73
  azure/storage/blob/aio/_encryption_async.py,sha256=spbWeycNMj38H5ynZ03FRtRu0L0tnl1lQn5UJT6HMAY,2518
73
- azure/storage/blob/aio/_lease_async.py,sha256=goFzdlgQx7rwWr7kgIOCybPKoM04jZuUpXz3JUVHdCs,18482
74
+ azure/storage/blob/aio/_lease_async.py,sha256=bWhczWKW3X7OBFJgbLcYJYfqFy6nenVCf9Y5EpS7pJg,18487
74
75
  azure/storage/blob/aio/_list_blobs_helper.py,sha256=JXrgZb2R3JhNO4P58kzpruRF52nek4JmAixfyaQQNYA,11269
75
76
  azure/storage/blob/aio/_models.py,sha256=k9vJ9GNp1IKfcSBwL1kj8aXq3gm_RYgRtK7_yJm-MTU,7684
76
77
  azure/storage/blob/aio/_upload_helpers.py,sha256=A1L97uaz4fnZ805vYRHYm8ypIDLamuRf5BJIvdNe_nU,13053
77
- azure_storage_blob-12.20.0.dist-info/LICENSE,sha256=_VMkgdgo4ToLE8y1mOAjOKNhd0BnWoYu5r3BVBto6T0,1073
78
- azure_storage_blob-12.20.0.dist-info/METADATA,sha256=dUASS-wDIEmgddFxB9Z76hmRDplRlaM8l2oIlQqozG8,26262
79
- azure_storage_blob-12.20.0.dist-info/WHEEL,sha256=ewwEueio1C2XeHTvT17n8dZUJgOvyCWCt0WVNLClP9o,92
80
- azure_storage_blob-12.20.0.dist-info/top_level.txt,sha256=S7DhWV9m80TBzAhOFjxDUiNbKszzoThbnrSz5MpbHSQ,6
81
- azure_storage_blob-12.20.0.dist-info/RECORD,,
78
+ azure_storage_blob-12.21.0.dist-info/LICENSE,sha256=_VMkgdgo4ToLE8y1mOAjOKNhd0BnWoYu5r3BVBto6T0,1073
79
+ azure_storage_blob-12.21.0.dist-info/METADATA,sha256=4icBIyy4ZzKo2gndUNLkeu8ZQCQSFgxRFxghDh5pSCA,26252
80
+ azure_storage_blob-12.21.0.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
81
+ azure_storage_blob-12.21.0.dist-info/top_level.txt,sha256=S7DhWV9m80TBzAhOFjxDUiNbKszzoThbnrSz5MpbHSQ,6
82
+ azure_storage_blob-12.21.0.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: bdist_wheel (0.37.0)
2
+ Generator: bdist_wheel (0.43.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5