azure-storage-blob 12.20.0b1__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.
- azure/storage/blob/__init__.py +12 -2
- azure/storage/blob/_blob_client.py +64 -51
- azure/storage/blob/_blob_service_client.py +17 -12
- azure/storage/blob/_container_client.py +33 -23
- azure/storage/blob/_download.py +277 -167
- azure/storage/blob/_generated/_azure_blob_storage.py +1 -1
- azure/storage/blob/_generated/_configuration.py +2 -2
- azure/storage/blob/_generated/_patch.py +2 -0
- azure/storage/blob/_generated/_serialization.py +1 -1
- azure/storage/blob/_generated/aio/_azure_blob_storage.py +1 -1
- azure/storage/blob/_generated/aio/_configuration.py +2 -2
- azure/storage/blob/_generated/aio/_patch.py +2 -0
- azure/storage/blob/_generated/aio/operations/_append_blob_operations.py +10 -5
- azure/storage/blob/_generated/aio/operations/_blob_operations.py +45 -26
- azure/storage/blob/_generated/aio/operations/_block_blob_operations.py +12 -7
- azure/storage/blob/_generated/aio/operations/_container_operations.py +39 -20
- azure/storage/blob/_generated/aio/operations/_page_blob_operations.py +15 -10
- azure/storage/blob/_generated/aio/operations/_patch.py +3 -0
- azure/storage/blob/_generated/aio/operations/_service_operations.py +28 -10
- azure/storage/blob/_generated/models/_patch.py +3 -0
- azure/storage/blob/_generated/operations/_append_blob_operations.py +14 -9
- azure/storage/blob/_generated/operations/_blob_operations.py +76 -51
- azure/storage/blob/_generated/operations/_block_blob_operations.py +18 -13
- azure/storage/blob/_generated/operations/_container_operations.py +64 -39
- azure/storage/blob/_generated/operations/_page_blob_operations.py +24 -19
- azure/storage/blob/_generated/operations/_patch.py +3 -0
- azure/storage/blob/_generated/operations/_service_operations.py +43 -19
- azure/storage/blob/_generated/py.typed +1 -0
- azure/storage/blob/_lease.py +6 -5
- azure/storage/blob/_models.py +1 -1
- azure/storage/blob/_serialize.py +1 -0
- azure/storage/blob/_shared/authentication.py +62 -4
- azure/storage/blob/_shared/base_client.py +1 -1
- azure/storage/blob/_shared/base_client_async.py +3 -2
- azure/storage/blob/_shared/models.py +13 -12
- azure/storage/blob/_shared/shared_access_signature.py +1 -0
- azure/storage/blob/_shared_access_signature.py +1 -0
- azure/storage/blob/_version.py +1 -1
- azure/storage/blob/aio/__init__.py +13 -4
- azure/storage/blob/aio/_blob_client_async.py +50 -47
- azure/storage/blob/aio/_blob_service_client_async.py +11 -11
- azure/storage/blob/aio/_container_client_async.py +23 -20
- azure/storage/blob/aio/_download_async.py +317 -209
- azure/storage/blob/aio/_lease_async.py +6 -6
- {azure_storage_blob-12.20.0b1.dist-info → azure_storage_blob-12.21.0.dist-info}/METADATA +2 -2
- azure_storage_blob-12.21.0.dist-info/RECORD +82 -0
- azure_storage_blob-12.20.0b1.dist-info/RECORD +0 -81
- {azure_storage_blob-12.20.0b1.dist-info → azure_storage_blob-12.21.0.dist-info}/LICENSE +0 -0
- {azure_storage_blob-12.20.0b1.dist-info → azure_storage_blob-12.21.0.dist-info}/WHEEL +0 -0
- {azure_storage_blob-12.20.0b1.dist-info → azure_storage_blob-12.21.0.dist-info}/top_level.txt +0 -0
@@ -3,7 +3,7 @@
|
|
3
3
|
# Licensed under the MIT License. See License.txt in the project root for
|
4
4
|
# license information.
|
5
5
|
# --------------------------------------------------------------------------
|
6
|
-
# pylint: disable=invalid-overridden-method
|
6
|
+
# pylint: disable=invalid-overridden-method, docstring-keyword-should-match-keyword-only
|
7
7
|
|
8
8
|
from typing import ( # pylint: disable=unused-import
|
9
9
|
Union, Optional, Any, IO, Iterable, AnyStr, Dict, List, Tuple,
|
@@ -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,13 +1,13 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: azure-storage-blob
|
3
|
-
Version: 12.
|
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
|
7
7
|
Author-email: ascl@microsoft.com
|
8
8
|
License: MIT License
|
9
9
|
Keywords: azure,azure sdk
|
10
|
-
Classifier: Development Status ::
|
10
|
+
Classifier: Development Status :: 5 - Production/Stable
|
11
11
|
Classifier: Programming Language :: Python
|
12
12
|
Classifier: Programming Language :: Python :: 3 :: Only
|
13
13
|
Classifier: Programming Language :: Python :: 3
|
@@ -0,0 +1,82 @@
|
|
1
|
+
azure/storage/blob/__init__.py,sha256=9kqgvJPkCpK6GqFM3s0grbTfmj_edWIDw0AtKfR01Lw,10586
|
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
|
+
azure/storage/blob/_deserialize.py,sha256=HwoxR0gZmCPAHOGuVH_Zf5Zd4bPlPnEFT9Tcm2R4DJU,8876
|
6
|
+
azure/storage/blob/_download.py,sha256=ndcSmvK4GEl878pTLgJEF2R_HePlzk1wZ1UTYpodJc0,38000
|
7
|
+
azure/storage/blob/_encryption.py,sha256=tYMxIgtPZrPcalCHWDdse0WOBB0zQtps67HSFdmE4FA,46982
|
8
|
+
azure/storage/blob/_lease.py,sha256=67O7SUESMhm9nnxhi6MHOD9jJyAUBFFwn1Zb63SU5T4,18816
|
9
|
+
azure/storage/blob/_list_blobs_helper.py,sha256=ccWZaWHPiSKxlnEyd6Qe-caVVFmYSrd7u-YO6Tv4PHI,14791
|
10
|
+
azure/storage/blob/_models.py,sha256=7TOQR2oTVDmHbe6Za_P8DtIIrccNJg49lFXNEEljvrk,56953
|
11
|
+
azure/storage/blob/_quick_query_helper.py,sha256=D5TlBTUVf5C8NxQjG4B5hdyHCPcQDkp27qyIonqZPE0,6369
|
12
|
+
azure/storage/blob/_serialize.py,sha256=uOEtWAZYs2L4VE9VJ7V0m9qbJzR1p589CoUjclHUxmU,8131
|
13
|
+
azure/storage/blob/_shared_access_signature.py,sha256=wPh-iVxJjqCYxIhLGc3SSiWrD3quYy0c5Kk6aMZG9AU,33279
|
14
|
+
azure/storage/blob/_upload_helpers.py,sha256=ix83D7cWryDubmOibgRCA0uODNzq4X7m-dSbADdIDd0,13831
|
15
|
+
azure/storage/blob/_version.py,sha256=FS3KNavIzXQpPgqciRjKI7J5WbB7uwdStEPboQ_yfN8,331
|
16
|
+
azure/storage/blob/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
17
|
+
azure/storage/blob/_generated/__init__.py,sha256=J2H2yiFhRSsMCNKUI7gaYFIQ4_AAbWjPtzXdOsHFQFI,835
|
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
|
+
azure/storage/blob/_generated/_vendor.py,sha256=e3w-rd6okoiCIB8rNMtF0fehAYFWNlshwiwTsIRkEH4,778
|
23
|
+
azure/storage/blob/_generated/py.typed,sha256=dcrsqJrcYfTX-ckLFJMTaj6mD8aDe2u0tkQG-ZYxnEg,26
|
24
|
+
azure/storage/blob/_generated/aio/__init__.py,sha256=J2H2yiFhRSsMCNKUI7gaYFIQ4_AAbWjPtzXdOsHFQFI,835
|
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
|
28
|
+
azure/storage/blob/_generated/aio/operations/__init__.py,sha256=a5HiO2T3KzSSX8reO6fCwbKcwXqd0A6GIeF4t63XmTA,1181
|
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
|
36
|
+
azure/storage/blob/_generated/models/__init__.py,sha256=qOh_WzGPNB7Do1XSXfRosHQJ94zx1G5dVXpZdkNKLuM,6303
|
37
|
+
azure/storage/blob/_generated/models/_azure_blob_storage_enums.py,sha256=o1I_SPnUKEsx2Aec-goLDw6eqZMyTVqFxg7tKpSYg0I,13049
|
38
|
+
azure/storage/blob/_generated/models/_models_py3.py,sha256=JXhdrOvO8VKo_Vhz-cqnXI1gfDf6nkrcBDC7Cz0rL_s,110612
|
39
|
+
azure/storage/blob/_generated/models/_patch.py,sha256=pYl0jxVFr3Yu0RHRFIgN3NwFrEZr1uL-7xbEXGgJzBw,794
|
40
|
+
azure/storage/blob/_generated/operations/__init__.py,sha256=a5HiO2T3KzSSX8reO6fCwbKcwXqd0A6GIeF4t63XmTA,1181
|
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
|
48
|
+
azure/storage/blob/_shared/__init__.py,sha256=Ohb4NSCuB9VXGEqjU2o9VZ5L98-a7c8KWZvrujnSFk8,1477
|
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
|
52
|
+
azure/storage/blob/_shared/constants.py,sha256=0TnhBNEaZpVq0vECmLoXWSzCajtn9WOlfOfzbMApRb4,620
|
53
|
+
azure/storage/blob/_shared/models.py,sha256=aDydzgBj2_-WfnlT1-nOhJt-FHxOU8BG0T0K68BejNk,24907
|
54
|
+
azure/storage/blob/_shared/parser.py,sha256=ACpdtwf6lhzmA0ukT3PmxpGVpimVXTy_mMSdixC55R8,1955
|
55
|
+
azure/storage/blob/_shared/policies.py,sha256=SmwPXODNO-I2RsAbxCd3_ZlJ8fVAxM3lx0KbV5N43zU,30816
|
56
|
+
azure/storage/blob/_shared/policies_async.py,sha256=PD060JU3rVszEW-TM7ZiSZjTLI2Sdk5swh5dI06zgr0,12613
|
57
|
+
azure/storage/blob/_shared/request_handlers.py,sha256=0G9eyzMY_8BlLfHA6jbJF75ENcu3xqZ33bHfSRi9HTM,9755
|
58
|
+
azure/storage/blob/_shared/response_handlers.py,sha256=yGBdN5kgPyLUBFaegKG-8q1nvLrh45J7Ccj1q1Q5H68,8909
|
59
|
+
azure/storage/blob/_shared/shared_access_signature.py,sha256=EofvWjPEFXq7ELO8x9VmThCaFUJuAdCeMUOboDdDK8w,10670
|
60
|
+
azure/storage/blob/_shared/uploads.py,sha256=f-xbbwYkOGZWr0iTaRJwTyo-XXa0AWdWYNH_CTBnd0M,22158
|
61
|
+
azure/storage/blob/_shared/uploads_async.py,sha256=xc2IM6eLAieNIlRt3kfmiX1xT6sxEVSmva19p0ZYXiY,16783
|
62
|
+
azure/storage/blob/_shared/avro/__init__.py,sha256=Ch-mWS2_vgonM9LjVaETdaW51OL6LfG23X-0tH2AFjw,310
|
63
|
+
azure/storage/blob/_shared/avro/avro_io.py,sha256=no2kWFVYxClP11e5fUypgDBW0YQcF9RgyuEy6rfgD6M,16054
|
64
|
+
azure/storage/blob/_shared/avro/avro_io_async.py,sha256=ui6Fw9wGVC6UjpvCj7r4wlp9i7XncNrukUN6TcZ_c5o,16195
|
65
|
+
azure/storage/blob/_shared/avro/datafile.py,sha256=Mj_f7BoHjkgpMrSR1g9-RDwDv7V82Jogh2YlN-0Z8I0,8459
|
66
|
+
azure/storage/blob/_shared/avro/datafile_async.py,sha256=JCUs5I3crsrFqeHenZ_fQLGj7Z2VSBjzKcI__5fd37I,7292
|
67
|
+
azure/storage/blob/_shared/avro/schema.py,sha256=Z9qcHIEBDbXxkBBs_HYbEWHlZtAbvT302mfWCYDpADI,36201
|
68
|
+
azure/storage/blob/aio/__init__.py,sha256=kSJ5gG-0E8-lNSrB0i23ycEArL6TGOvcZHu3BMJhST8,8113
|
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
|
73
|
+
azure/storage/blob/aio/_encryption_async.py,sha256=spbWeycNMj38H5ynZ03FRtRu0L0tnl1lQn5UJT6HMAY,2518
|
74
|
+
azure/storage/blob/aio/_lease_async.py,sha256=bWhczWKW3X7OBFJgbLcYJYfqFy6nenVCf9Y5EpS7pJg,18487
|
75
|
+
azure/storage/blob/aio/_list_blobs_helper.py,sha256=JXrgZb2R3JhNO4P58kzpruRF52nek4JmAixfyaQQNYA,11269
|
76
|
+
azure/storage/blob/aio/_models.py,sha256=k9vJ9GNp1IKfcSBwL1kj8aXq3gm_RYgRtK7_yJm-MTU,7684
|
77
|
+
azure/storage/blob/aio/_upload_helpers.py,sha256=A1L97uaz4fnZ805vYRHYm8ypIDLamuRf5BJIvdNe_nU,13053
|
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,81 +0,0 @@
|
|
1
|
-
azure/storage/blob/__init__.py,sha256=j7mkp5ud3H4a1C6UBGoUpFAEJq5_1mg2BD8BX-UFn1I,10385
|
2
|
-
azure/storage/blob/_blob_client.py,sha256=Z7UANeW80ve-OLMTVjgpSpi3W-v_-XUXE3xjjECdIis,236830
|
3
|
-
azure/storage/blob/_blob_service_client.py,sha256=M6y9MSG2xBw2SOkS9H3VBhA9_3gOKnpFcAyuWldvgNI,40938
|
4
|
-
azure/storage/blob/_container_client.py,sha256=CPyPgRcUMHSJXe48a1KpcrxjAlbUNAren1bJ3bBEj_g,95511
|
5
|
-
azure/storage/blob/_deserialize.py,sha256=HwoxR0gZmCPAHOGuVH_Zf5Zd4bPlPnEFT9Tcm2R4DJU,8876
|
6
|
-
azure/storage/blob/_download.py,sha256=rVqZ3av2lmDoqYlHJY3THzSAIuJkJfuK9xf3uv3dbm4,32439
|
7
|
-
azure/storage/blob/_encryption.py,sha256=tYMxIgtPZrPcalCHWDdse0WOBB0zQtps67HSFdmE4FA,46982
|
8
|
-
azure/storage/blob/_lease.py,sha256=4l_Y0WVwc7RyUjfRHFbVvtbdBcPchjnlZJDmcj6BANY,18749
|
9
|
-
azure/storage/blob/_list_blobs_helper.py,sha256=ccWZaWHPiSKxlnEyd6Qe-caVVFmYSrd7u-YO6Tv4PHI,14791
|
10
|
-
azure/storage/blob/_models.py,sha256=pJjLrX-bLqeLU9BjokvLfihh4z51rHSimGta_pOFMr4,56949
|
11
|
-
azure/storage/blob/_quick_query_helper.py,sha256=D5TlBTUVf5C8NxQjG4B5hdyHCPcQDkp27qyIonqZPE0,6369
|
12
|
-
azure/storage/blob/_serialize.py,sha256=omJx6Ji8TIs3BeD-9dRAJyIc7VEVh-vV4detkjT_5Kg,8113
|
13
|
-
azure/storage/blob/_shared_access_signature.py,sha256=oagWkZQyV6eQCw3DQ6VtHe1EHsrNs906xxyWhxN5QpM,33217
|
14
|
-
azure/storage/blob/_upload_helpers.py,sha256=ix83D7cWryDubmOibgRCA0uODNzq4X7m-dSbADdIDd0,13831
|
15
|
-
azure/storage/blob/_version.py,sha256=1ma7QIKf-73nloy-SGWA2WdC1u7JmAqqpcIJKh2v2EM,333
|
16
|
-
azure/storage/blob/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
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
|
22
|
-
azure/storage/blob/_generated/_vendor.py,sha256=e3w-rd6okoiCIB8rNMtF0fehAYFWNlshwiwTsIRkEH4,778
|
23
|
-
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
|
27
|
-
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
|
35
|
-
azure/storage/blob/_generated/models/__init__.py,sha256=qOh_WzGPNB7Do1XSXfRosHQJ94zx1G5dVXpZdkNKLuM,6303
|
36
|
-
azure/storage/blob/_generated/models/_azure_blob_storage_enums.py,sha256=o1I_SPnUKEsx2Aec-goLDw6eqZMyTVqFxg7tKpSYg0I,13049
|
37
|
-
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/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
|
47
|
-
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
|
51
|
-
azure/storage/blob/_shared/constants.py,sha256=0TnhBNEaZpVq0vECmLoXWSzCajtn9WOlfOfzbMApRb4,620
|
52
|
-
azure/storage/blob/_shared/models.py,sha256=Z3c50xrqhArRulmtJA8QjCALbF9Iqu7zQmuxdtlrU3k,24850
|
53
|
-
azure/storage/blob/_shared/parser.py,sha256=ACpdtwf6lhzmA0ukT3PmxpGVpimVXTy_mMSdixC55R8,1955
|
54
|
-
azure/storage/blob/_shared/policies.py,sha256=SmwPXODNO-I2RsAbxCd3_ZlJ8fVAxM3lx0KbV5N43zU,30816
|
55
|
-
azure/storage/blob/_shared/policies_async.py,sha256=PD060JU3rVszEW-TM7ZiSZjTLI2Sdk5swh5dI06zgr0,12613
|
56
|
-
azure/storage/blob/_shared/request_handlers.py,sha256=0G9eyzMY_8BlLfHA6jbJF75ENcu3xqZ33bHfSRi9HTM,9755
|
57
|
-
azure/storage/blob/_shared/response_handlers.py,sha256=yGBdN5kgPyLUBFaegKG-8q1nvLrh45J7Ccj1q1Q5H68,8909
|
58
|
-
azure/storage/blob/_shared/shared_access_signature.py,sha256=nvUirN6ZbnrZYlhovLNF0qofxxCEzHgkQw5emLdJegA,10608
|
59
|
-
azure/storage/blob/_shared/uploads.py,sha256=f-xbbwYkOGZWr0iTaRJwTyo-XXa0AWdWYNH_CTBnd0M,22158
|
60
|
-
azure/storage/blob/_shared/uploads_async.py,sha256=xc2IM6eLAieNIlRt3kfmiX1xT6sxEVSmva19p0ZYXiY,16783
|
61
|
-
azure/storage/blob/_shared/avro/__init__.py,sha256=Ch-mWS2_vgonM9LjVaETdaW51OL6LfG23X-0tH2AFjw,310
|
62
|
-
azure/storage/blob/_shared/avro/avro_io.py,sha256=no2kWFVYxClP11e5fUypgDBW0YQcF9RgyuEy6rfgD6M,16054
|
63
|
-
azure/storage/blob/_shared/avro/avro_io_async.py,sha256=ui6Fw9wGVC6UjpvCj7r4wlp9i7XncNrukUN6TcZ_c5o,16195
|
64
|
-
azure/storage/blob/_shared/avro/datafile.py,sha256=Mj_f7BoHjkgpMrSR1g9-RDwDv7V82Jogh2YlN-0Z8I0,8459
|
65
|
-
azure/storage/blob/_shared/avro/datafile_async.py,sha256=JCUs5I3crsrFqeHenZ_fQLGj7Z2VSBjzKcI__5fd37I,7292
|
66
|
-
azure/storage/blob/_shared/avro/schema.py,sha256=Z9qcHIEBDbXxkBBs_HYbEWHlZtAbvT302mfWCYDpADI,36201
|
67
|
-
azure/storage/blob/aio/__init__.py,sha256=yH_iNDYcQ8cEu9TEXGL4dJGY0WM_r30nNQe60_8mAXs,7912
|
68
|
-
azure/storage/blob/aio/_blob_client_async.py,sha256=b1PVh9bb7GI48feQ_idbNh_5WPUk9sRxHjtyK0gbe3o,167276
|
69
|
-
azure/storage/blob/aio/_blob_service_client_async.py,sha256=qh1fcTIrmf3HijWtSv3iFsFu4rzAZP2l40szThP7fw4,38150
|
70
|
-
azure/storage/blob/aio/_container_client_async.py,sha256=etnlmMWUbI-4mDRxEbjRG0Zm0yBSSNJfs1qhtBVPWVM,77887
|
71
|
-
azure/storage/blob/aio/_download_async.py,sha256=mj3wkZZNjDNBJhEJGvPjjm_EZXDB-S4y_N0XhYLXhl0,29504
|
72
|
-
azure/storage/blob/aio/_encryption_async.py,sha256=spbWeycNMj38H5ynZ03FRtRu0L0tnl1lQn5UJT6HMAY,2518
|
73
|
-
azure/storage/blob/aio/_lease_async.py,sha256=ZBNV868_FFEY2zyJ-gl_wVBxkXNh6PalRWR0PwzLXuQ,18437
|
74
|
-
azure/storage/blob/aio/_list_blobs_helper.py,sha256=JXrgZb2R3JhNO4P58kzpruRF52nek4JmAixfyaQQNYA,11269
|
75
|
-
azure/storage/blob/aio/_models.py,sha256=k9vJ9GNp1IKfcSBwL1kj8aXq3gm_RYgRtK7_yJm-MTU,7684
|
76
|
-
azure/storage/blob/aio/_upload_helpers.py,sha256=A1L97uaz4fnZ805vYRHYm8ypIDLamuRf5BJIvdNe_nU,13053
|
77
|
-
azure_storage_blob-12.20.0b1.dist-info/LICENSE,sha256=_VMkgdgo4ToLE8y1mOAjOKNhd0BnWoYu5r3BVBto6T0,1073
|
78
|
-
azure_storage_blob-12.20.0b1.dist-info/METADATA,sha256=x0WsZ8F1GoD5f-SRd_1_yusRJnp96mbMUFZqpvws-Q8,26241
|
79
|
-
azure_storage_blob-12.20.0b1.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
80
|
-
azure_storage_blob-12.20.0b1.dist-info/top_level.txt,sha256=S7DhWV9m80TBzAhOFjxDUiNbKszzoThbnrSz5MpbHSQ,6
|
81
|
-
azure_storage_blob-12.20.0b1.dist-info/RECORD,,
|
File without changes
|
File without changes
|
{azure_storage_blob-12.20.0b1.dist-info → azure_storage_blob-12.21.0.dist-info}/top_level.txt
RENAMED
File without changes
|