azure-storage-blob 12.21.0__py3-none-any.whl → 12.21.0b1__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/_blob_client.py +48 -53
- azure/storage/blob/_blob_service_client.py +11 -11
- azure/storage/blob/_container_client.py +20 -22
- azure/storage/blob/_download.py +167 -277
- azure/storage/blob/_lease.py +5 -5
- azure/storage/blob/_models.py +1 -1
- azure/storage/blob/_version.py +1 -1
- azure/storage/blob/aio/_blob_client_async.py +46 -49
- azure/storage/blob/aio/_blob_service_client_async.py +10 -10
- azure/storage/blob/aio/_container_client_async.py +19 -22
- azure/storage/blob/aio/_download_async.py +209 -317
- azure/storage/blob/aio/_lease_async.py +5 -5
- {azure_storage_blob-12.21.0.dist-info → azure_storage_blob-12.21.0b1.dist-info}/METADATA +7 -7
- {azure_storage_blob-12.21.0.dist-info → azure_storage_blob-12.21.0b1.dist-info}/RECORD +17 -18
- {azure_storage_blob-12.21.0.dist-info → azure_storage_blob-12.21.0b1.dist-info}/WHEEL +1 -1
- azure/storage/blob/_generated/py.typed +0 -1
- {azure_storage_blob-12.21.0.dist-info → azure_storage_blob-12.21.0b1.dist-info}/LICENSE +0 -0
- {azure_storage_blob-12.21.0.dist-info → azure_storage_blob-12.21.0b1.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,13 +1,13 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: azure-storage-blob
|
3
|
-
Version: 12.21.
|
3
|
+
Version: 12.21.0b1
|
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 :: 4 - Beta
|
11
11
|
Classifier: Programming Language :: Python
|
12
12
|
Classifier: Programming Language :: Python :: 3 :: Only
|
13
13
|
Classifier: Programming Language :: Python :: 3
|
@@ -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,18 +1,18 @@
|
|
1
1
|
azure/storage/blob/__init__.py,sha256=9kqgvJPkCpK6GqFM3s0grbTfmj_edWIDw0AtKfR01Lw,10586
|
2
|
-
azure/storage/blob/_blob_client.py,sha256=
|
3
|
-
azure/storage/blob/_blob_service_client.py,sha256=
|
4
|
-
azure/storage/blob/_container_client.py,sha256=
|
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
|
5
5
|
azure/storage/blob/_deserialize.py,sha256=HwoxR0gZmCPAHOGuVH_Zf5Zd4bPlPnEFT9Tcm2R4DJU,8876
|
6
|
-
azure/storage/blob/_download.py,sha256=
|
6
|
+
azure/storage/blob/_download.py,sha256=rVqZ3av2lmDoqYlHJY3THzSAIuJkJfuK9xf3uv3dbm4,32439
|
7
7
|
azure/storage/blob/_encryption.py,sha256=tYMxIgtPZrPcalCHWDdse0WOBB0zQtps67HSFdmE4FA,46982
|
8
|
-
azure/storage/blob/_lease.py,sha256=
|
8
|
+
azure/storage/blob/_lease.py,sha256=YmyVL3IYFONpwTPmvzGIggwRIk6-xuGqyq39WWKjP9M,18811
|
9
9
|
azure/storage/blob/_list_blobs_helper.py,sha256=ccWZaWHPiSKxlnEyd6Qe-caVVFmYSrd7u-YO6Tv4PHI,14791
|
10
|
-
azure/storage/blob/_models.py,sha256=
|
10
|
+
azure/storage/blob/_models.py,sha256=pJjLrX-bLqeLU9BjokvLfihh4z51rHSimGta_pOFMr4,56949
|
11
11
|
azure/storage/blob/_quick_query_helper.py,sha256=D5TlBTUVf5C8NxQjG4B5hdyHCPcQDkp27qyIonqZPE0,6369
|
12
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=
|
15
|
+
azure/storage/blob/_version.py,sha256=mTw2dgV_ivezJR1ebiIwSiwQRS97rJHaGs6BYJN_wsI,333
|
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
18
|
azure/storage/blob/_generated/_azure_blob_storage.py,sha256=Xpt7ZrX5n2nN0l5x8EU9tX8H1ZPaK0vOV0GEFNxhYxs,5716
|
@@ -20,7 +20,6 @@ azure/storage/blob/_generated/_configuration.py,sha256=PV4kKjbnHhg6nD30e_acUENns
|
|
20
20
|
azure/storage/blob/_generated/_patch.py,sha256=MdyWs5y2w9_vYRWulELR-RV2uRYkjYpdB7nTVz2tVY4,1532
|
21
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
|
24
23
|
azure/storage/blob/_generated/aio/__init__.py,sha256=J2H2yiFhRSsMCNKUI7gaYFIQ4_AAbWjPtzXdOsHFQFI,835
|
25
24
|
azure/storage/blob/_generated/aio/_azure_blob_storage.py,sha256=79r9sIDwid96ZMyrO3u0S4UnfmR3O3g-M8JDmsTULXU,5859
|
26
25
|
azure/storage/blob/_generated/aio/_configuration.py,sha256=Q4jfjKwpMOvSe2gS9lOdvwwsHvVtsJZN37AYrf4ySgg,2576
|
@@ -66,17 +65,17 @@ azure/storage/blob/_shared/avro/datafile.py,sha256=Mj_f7BoHjkgpMrSR1g9-RDwDv7V82
|
|
66
65
|
azure/storage/blob/_shared/avro/datafile_async.py,sha256=JCUs5I3crsrFqeHenZ_fQLGj7Z2VSBjzKcI__5fd37I,7292
|
67
66
|
azure/storage/blob/_shared/avro/schema.py,sha256=Z9qcHIEBDbXxkBBs_HYbEWHlZtAbvT302mfWCYDpADI,36201
|
68
67
|
azure/storage/blob/aio/__init__.py,sha256=kSJ5gG-0E8-lNSrB0i23ycEArL6TGOvcZHu3BMJhST8,8113
|
69
|
-
azure/storage/blob/aio/_blob_client_async.py,sha256=
|
70
|
-
azure/storage/blob/aio/_blob_service_client_async.py,sha256=
|
71
|
-
azure/storage/blob/aio/_container_client_async.py,sha256=
|
72
|
-
azure/storage/blob/aio/_download_async.py,sha256=
|
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
|
73
72
|
azure/storage/blob/aio/_encryption_async.py,sha256=spbWeycNMj38H5ynZ03FRtRu0L0tnl1lQn5UJT6HMAY,2518
|
74
|
-
azure/storage/blob/aio/_lease_async.py,sha256=
|
73
|
+
azure/storage/blob/aio/_lease_async.py,sha256=goFzdlgQx7rwWr7kgIOCybPKoM04jZuUpXz3JUVHdCs,18482
|
75
74
|
azure/storage/blob/aio/_list_blobs_helper.py,sha256=JXrgZb2R3JhNO4P58kzpruRF52nek4JmAixfyaQQNYA,11269
|
76
75
|
azure/storage/blob/aio/_models.py,sha256=k9vJ9GNp1IKfcSBwL1kj8aXq3gm_RYgRtK7_yJm-MTU,7684
|
77
76
|
azure/storage/blob/aio/_upload_helpers.py,sha256=A1L97uaz4fnZ805vYRHYm8ypIDLamuRf5BJIvdNe_nU,13053
|
78
|
-
azure_storage_blob-12.21.
|
79
|
-
azure_storage_blob-12.21.
|
80
|
-
azure_storage_blob-12.21.
|
81
|
-
azure_storage_blob-12.21.
|
82
|
-
azure_storage_blob-12.21.
|
77
|
+
azure_storage_blob-12.21.0b1.dist-info/LICENSE,sha256=_VMkgdgo4ToLE8y1mOAjOKNhd0BnWoYu5r3BVBto6T0,1073
|
78
|
+
azure_storage_blob-12.21.0b1.dist-info/METADATA,sha256=d2DZfrOxSMvkGc_m9diaCqgn4rSHgsBxqXYLMPLDVAE,26251
|
79
|
+
azure_storage_blob-12.21.0b1.dist-info/WHEEL,sha256=ewwEueio1C2XeHTvT17n8dZUJgOvyCWCt0WVNLClP9o,92
|
80
|
+
azure_storage_blob-12.21.0b1.dist-info/top_level.txt,sha256=S7DhWV9m80TBzAhOFjxDUiNbKszzoThbnrSz5MpbHSQ,6
|
81
|
+
azure_storage_blob-12.21.0b1.dist-info/RECORD,,
|
@@ -1 +0,0 @@
|
|
1
|
-
# Marker file for PEP 561.
|
File without changes
|
{azure_storage_blob-12.21.0.dist-info → azure_storage_blob-12.21.0b1.dist-info}/top_level.txt
RENAMED
File without changes
|