azure-storage-blob 12.20.0__py3-none-any.whl → 12.20.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/__init__.py +2 -12
- azure/storage/blob/_blob_client.py +3 -11
- azure/storage/blob/_blob_service_client.py +1 -6
- azure/storage/blob/_container_client.py +3 -11
- azure/storage/blob/_lease.py +0 -1
- azure/storage/blob/_shared/models.py +12 -13
- azure/storage/blob/_shared/shared_access_signature.py +0 -1
- azure/storage/blob/_shared_access_signature.py +0 -1
- azure/storage/blob/_version.py +1 -1
- azure/storage/blob/aio/__init__.py +4 -13
- azure/storage/blob/aio/_blob_client_async.py +1 -1
- azure/storage/blob/aio/_blob_service_client_async.py +1 -1
- azure/storage/blob/aio/_container_client_async.py +1 -1
- azure/storage/blob/aio/_lease_async.py +1 -1
- {azure_storage_blob-12.20.0.dist-info → azure_storage_blob-12.20.0b1.dist-info}/METADATA +7 -7
- {azure_storage_blob-12.20.0.dist-info → azure_storage_blob-12.20.0b1.dist-info}/RECORD +19 -19
- {azure_storage_blob-12.20.0.dist-info → azure_storage_blob-12.20.0b1.dist-info}/WHEEL +1 -1
- {azure_storage_blob-12.20.0.dist-info → azure_storage_blob-12.20.0b1.dist-info}/LICENSE +0 -0
- {azure_storage_blob-12.20.0.dist-info → azure_storage_blob-12.20.0b1.dist-info}/top_level.txt +0 -0
azure/storage/blob/__init__.py
CHANGED
@@ -3,8 +3,6 @@
|
|
3
3
|
# Licensed under the MIT License. See License.txt in the project root for
|
4
4
|
# license information.
|
5
5
|
# --------------------------------------------------------------------------
|
6
|
-
# pylint: disable=docstring-keyword-should-match-keyword-only
|
7
|
-
|
8
6
|
import os
|
9
7
|
|
10
8
|
from typing import Union, Iterable, AnyStr, IO, Any, Dict # pylint: disable=unused-import
|
@@ -94,11 +92,7 @@ def upload_blob_to_url(
|
|
94
92
|
- except in the case of AzureSasCredential, where the conflicting SAS tokens will raise a ValueError.
|
95
93
|
If using an instance of AzureNamedKeyCredential, "name" should be the storage account name, and "key"
|
96
94
|
should be the storage account key.
|
97
|
-
:type credential:
|
98
|
-
~azure.core.credentials.AzureNamedKeyCredential or
|
99
|
-
~azure.core.credentials.AzureSasCredential or
|
100
|
-
~azure.core.credentials.TokenCredential or
|
101
|
-
str or dict[str, str] or None
|
95
|
+
:type credential: Optional[Union[str, Dict[str, str], AzureNamedKeyCredential, AzureSasCredential, "TokenCredential"]] # pylint: disable=line-too-long
|
102
96
|
:keyword bool overwrite:
|
103
97
|
Whether the blob to be uploaded should overwrite the current data.
|
104
98
|
If True, upload_blob_to_url will overwrite any existing data. If set to False, the
|
@@ -162,11 +156,7 @@ def download_blob_from_url(
|
|
162
156
|
- except in the case of AzureSasCredential, where the conflicting SAS tokens will raise a ValueError.
|
163
157
|
If using an instance of AzureNamedKeyCredential, "name" should be the storage account name, and "key"
|
164
158
|
should be the storage account key.
|
165
|
-
:type credential:
|
166
|
-
~azure.core.credentials.AzureNamedKeyCredential or
|
167
|
-
~azure.core.credentials.AzureSasCredential or
|
168
|
-
~azure.core.credentials.TokenCredential or
|
169
|
-
str or dict[str, str] or None
|
159
|
+
:type credential: Optional[Union[str, Dict[str, str], AzureNamedKeyCredential, AzureSasCredential, "TokenCredential"]] # pylint: disable=line-too-long
|
170
160
|
:keyword bool overwrite:
|
171
161
|
Whether the local file should be overwritten if it already exists. The default value is
|
172
162
|
`False` - in which case a ValueError will be raised if the file already exists. If set to
|
@@ -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=too-many-lines
|
6
|
+
# pylint: disable=too-many-lines
|
7
7
|
|
8
8
|
from functools import partial
|
9
9
|
from io import BytesIO
|
@@ -237,11 +237,7 @@ class BlobClient(StorageAccountHostsMixin, StorageEncryptionMixin): # pylint: d
|
|
237
237
|
- except in the case of AzureSasCredential, where the conflicting SAS tokens will raise a ValueError.
|
238
238
|
If using an instance of AzureNamedKeyCredential, "name" should be the storage account name, and "key"
|
239
239
|
should be the storage account key.
|
240
|
-
:type credential:
|
241
|
-
~azure.core.credentials.AzureNamedKeyCredential or
|
242
|
-
~azure.core.credentials.AzureSasCredential or
|
243
|
-
~azure.core.credentials.TokenCredential or
|
244
|
-
str or dict[str, str] or None
|
240
|
+
:type credential: Optional[Union[str, Dict[str, str], "AzureNamedKeyCredential", "AzureSasCredential", "TokenCredential"]] # pylint: disable=line-too-long
|
245
241
|
:param str snapshot:
|
246
242
|
The optional blob snapshot on which to operate. This can be the snapshot ID string
|
247
243
|
or the response returned from :func:`create_snapshot`. If specified, this will override
|
@@ -330,11 +326,7 @@ class BlobClient(StorageAccountHostsMixin, StorageEncryptionMixin): # pylint: d
|
|
330
326
|
Credentials provided here will take precedence over those in the connection string.
|
331
327
|
If using an instance of AzureNamedKeyCredential, "name" should be the storage account name, and "key"
|
332
328
|
should be the storage account key.
|
333
|
-
:type credential:
|
334
|
-
~azure.core.credentials.AzureNamedKeyCredential or
|
335
|
-
~azure.core.credentials.AzureSasCredential or
|
336
|
-
~azure.core.credentials.TokenCredential or
|
337
|
-
str or dict[str, str] or None
|
329
|
+
:type credential: Optional[Union[str, Dict[str, str], "AzureNamedKeyCredential", "AzureSasCredential", "TokenCredential"]] # pylint: disable=line-too-long
|
338
330
|
:keyword str version_id: The version id parameter is an opaque DateTime value that, when present,
|
339
331
|
specifies the version of the blob to operate on.
|
340
332
|
:keyword str audience: The audience to use when requesting tokens for Azure Active Directory
|
@@ -3,7 +3,6 @@
|
|
3
3
|
# Licensed under the MIT License. See License.txt in the project root for
|
4
4
|
# license information.
|
5
5
|
# --------------------------------------------------------------------------
|
6
|
-
# pylint: disable=docstring-keyword-should-match-keyword-only
|
7
6
|
|
8
7
|
import functools
|
9
8
|
import warnings
|
@@ -172,11 +171,7 @@ class BlobServiceClient(StorageAccountHostsMixin, StorageEncryptionMixin):
|
|
172
171
|
Credentials provided here will take precedence over those in the connection string.
|
173
172
|
If using an instance of AzureNamedKeyCredential, "name" should be the storage account name, and "key"
|
174
173
|
should be the storage account key.
|
175
|
-
:type credential:
|
176
|
-
~azure.core.credentials.AzureNamedKeyCredential or
|
177
|
-
~azure.core.credentials.AzureSasCredential or
|
178
|
-
~azure.core.credentials.TokenCredential or
|
179
|
-
str or dict[str, str] or None
|
174
|
+
:type credential: Optional[Union[str, Dict[str, str], "AzureNamedKeyCredential", "AzureSasCredential", "TokenCredential"]] # pylint: disable=line-too-long
|
180
175
|
:keyword str audience: The audience to use when requesting tokens for Azure Active Directory
|
181
176
|
authentication. Only has an effect when credential is of type TokenCredential. The value could be
|
182
177
|
https://storage.azure.com/ (default) or https://<account>.blob.core.windows.net.
|
@@ -1,9 +1,9 @@
|
|
1
|
+
# pylint: disable=too-many-lines
|
1
2
|
# -------------------------------------------------------------------------
|
2
3
|
# Copyright (c) Microsoft Corporation. All rights reserved.
|
3
4
|
# Licensed under the MIT License. See License.txt in the project root for
|
4
5
|
# license information.
|
5
6
|
# --------------------------------------------------------------------------
|
6
|
-
# pylint: disable=too-many-lines, docstring-keyword-should-match-keyword-only
|
7
7
|
|
8
8
|
import functools
|
9
9
|
import warnings
|
@@ -202,11 +202,7 @@ class ContainerClient(StorageAccountHostsMixin, StorageEncryptionMixin): # py
|
|
202
202
|
- except in the case of AzureSasCredential, where the conflicting SAS tokens will raise a ValueError.
|
203
203
|
If using an instance of AzureNamedKeyCredential, "name" should be the storage account name, and "key"
|
204
204
|
should be the storage account key.
|
205
|
-
:type credential:
|
206
|
-
~azure.core.credentials.AzureNamedKeyCredential or
|
207
|
-
~azure.core.credentials.AzureSasCredential or
|
208
|
-
~azure.core.credentials.TokenCredential or
|
209
|
-
str or dict[str, str] or None
|
205
|
+
:type credential: Optional[Union[str, Dict[str, str], "AzureNamedKeyCredential", "AzureSasCredential", "TokenCredential"]] = None, # pylint: disable=line-too-long
|
210
206
|
:keyword str audience: The audience to use when requesting tokens for Azure Active Directory
|
211
207
|
authentication. Only has an effect when credential is of type TokenCredential. The value could be
|
212
208
|
https://storage.azure.com/ (default) or https://<account>.blob.core.windows.net.
|
@@ -255,11 +251,7 @@ class ContainerClient(StorageAccountHostsMixin, StorageEncryptionMixin): # py
|
|
255
251
|
Credentials provided here will take precedence over those in the connection string.
|
256
252
|
If using an instance of AzureNamedKeyCredential, "name" should be the storage account name, and "key"
|
257
253
|
should be the storage account key.
|
258
|
-
:type credential:
|
259
|
-
~azure.core.credentials.AzureNamedKeyCredential or
|
260
|
-
~azure.core.credentials.AzureSasCredential or
|
261
|
-
~azure.core.credentials.TokenCredential or
|
262
|
-
str or dict[str, str] or None
|
254
|
+
:type credential: Optional[Union[str, Dict[str, str], "AzureNamedKeyCredential", "AzureSasCredential", "TokenCredential"]] = None, # pylint: disable=line-too-long
|
263
255
|
:keyword str audience: The audience to use when requesting tokens for Azure Active Directory
|
264
256
|
authentication. Only has an effect when credential is of type TokenCredential. The value could be
|
265
257
|
https://storage.azure.com/ (default) or https://<account>.blob.core.windows.net.
|
azure/storage/blob/_lease.py
CHANGED
@@ -453,20 +453,19 @@ class AccountSasPermissions(object):
|
|
453
453
|
class Services(object):
|
454
454
|
"""Specifies the services accessible with the account SAS.
|
455
455
|
|
456
|
-
:
|
457
|
-
Access for the `~azure.storage.blob.BlobServiceClient
|
458
|
-
:
|
459
|
-
Access for the `~azure.storage.queue.QueueServiceClient
|
460
|
-
:
|
461
|
-
Access for the `~azure.storage.fileshare.ShareServiceClient
|
456
|
+
:param bool blob:
|
457
|
+
Access for the `~azure.storage.blob.BlobServiceClient`
|
458
|
+
:param bool queue:
|
459
|
+
Access for the `~azure.storage.queue.QueueServiceClient`
|
460
|
+
:param bool fileshare:
|
461
|
+
Access for the `~azure.storage.fileshare.ShareServiceClient`
|
462
462
|
"""
|
463
463
|
|
464
|
-
|
465
|
-
|
466
|
-
|
467
|
-
|
468
|
-
|
469
|
-
) -> None:
|
464
|
+
blob: bool = False
|
465
|
+
queue: bool = False
|
466
|
+
fileshare: bool = False
|
467
|
+
|
468
|
+
def __init__(self, blob: bool = False, queue: bool = False, fileshare: bool = False):
|
470
469
|
self.blob = blob
|
471
470
|
self.queue = queue
|
472
471
|
self.fileshare = fileshare
|
@@ -494,7 +493,7 @@ class Services(object):
|
|
494
493
|
res_queue = 'q' in string
|
495
494
|
res_file = 'f' in string
|
496
495
|
|
497
|
-
parsed = cls(
|
496
|
+
parsed = cls(res_blob, res_queue, res_file)
|
498
497
|
parsed._str = string # pylint: disable = protected-access
|
499
498
|
return parsed
|
500
499
|
|
@@ -3,7 +3,6 @@
|
|
3
3
|
# Licensed under the MIT License. See License.txt in the project root for
|
4
4
|
# license information.
|
5
5
|
# --------------------------------------------------------------------------
|
6
|
-
# pylint: disable=docstring-keyword-should-match-keyword-only
|
7
6
|
|
8
7
|
from datetime import date
|
9
8
|
|
@@ -3,7 +3,6 @@
|
|
3
3
|
# Licensed under the MIT License. See License.txt in the project root for
|
4
4
|
# license information.
|
5
5
|
# --------------------------------------------------------------------------
|
6
|
-
# pylint: disable=docstring-keyword-should-match-keyword-only
|
7
6
|
|
8
7
|
from typing import ( # pylint: disable=unused-import
|
9
8
|
Union, Optional, Any, TYPE_CHECKING
|
azure/storage/blob/_version.py
CHANGED
@@ -3,7 +3,6 @@
|
|
3
3
|
# Licensed under the MIT License. See License.txt in the project root for
|
4
4
|
# license information.
|
5
5
|
# --------------------------------------------------------------------------
|
6
|
-
# pylint: disable=docstring-keyword-should-match-keyword-only
|
7
6
|
|
8
7
|
import os
|
9
8
|
|
@@ -32,7 +31,7 @@ async def upload_blob_to_url(
|
|
32
31
|
:param data:
|
33
32
|
The data to upload. This can be bytes, text, an iterable or a file-like object.
|
34
33
|
:type data: bytes or str or Iterable
|
35
|
-
|
34
|
+
:param credential:
|
36
35
|
The credentials with which to authenticate. This is optional if the
|
37
36
|
blob URL already has a SAS token. The value can be a SAS token string,
|
38
37
|
an instance of a AzureSasCredential or AzureNamedKeyCredential from azure.core.credentials,
|
@@ -41,11 +40,7 @@ async def upload_blob_to_url(
|
|
41
40
|
- except in the case of AzureSasCredential, where the conflicting SAS tokens will raise a ValueError.
|
42
41
|
If using an instance of AzureNamedKeyCredential, "name" should be the storage account name, and "key"
|
43
42
|
should be the storage account key.
|
44
|
-
:type credential:
|
45
|
-
~azure.core.credentials.AzureNamedKeyCredential or
|
46
|
-
~azure.core.credentials.AzureSasCredential or
|
47
|
-
~azure.core.credentials.TokenCredential or
|
48
|
-
str or dict[str, str] or None
|
43
|
+
:type credential: Optional[Union[str, Dict[str, str], AzureNamedKeyCredential, AzureSasCredential, "TokenCredential"]] # pylint: disable=line-too-long
|
49
44
|
:keyword bool overwrite:
|
50
45
|
Whether the blob to be uploaded should overwrite the current data.
|
51
46
|
If True, upload_blob_to_url will overwrite any existing data. If set to False, the
|
@@ -69,7 +64,7 @@ async def upload_blob_to_url(
|
|
69
64
|
:keyword str encoding:
|
70
65
|
Encoding to use if text is supplied as input. Defaults to UTF-8.
|
71
66
|
:returns: Blob-updated property dict (Etag and last modified)
|
72
|
-
:rtype: dict
|
67
|
+
:rtype: dict(str, Any)
|
73
68
|
"""
|
74
69
|
async with BlobClient.from_blob_url(blob_url, credential=credential) as client:
|
75
70
|
return await client.upload_blob(data=data, blob_type=BlobType.BlockBlob, **kwargs)
|
@@ -104,11 +99,7 @@ async def download_blob_from_url(
|
|
104
99
|
- except in the case of AzureSasCredential, where the conflicting SAS tokens will raise a ValueError.
|
105
100
|
If using an instance of AzureNamedKeyCredential, "name" should be the storage account name, and "key"
|
106
101
|
should be the storage account key.
|
107
|
-
:type credential:
|
108
|
-
~azure.core.credentials.AzureNamedKeyCredential or
|
109
|
-
~azure.core.credentials.AzureSasCredential or
|
110
|
-
~azure.core.credentials.TokenCredential or
|
111
|
-
str or dict[str, str] or None
|
102
|
+
:type credential: Optional[Union[str, Dict[str, str], AzureNamedKeyCredential, AzureSasCredential, "TokenCredential"]] # pylint: disable=line-too-long
|
112
103
|
:keyword bool overwrite:
|
113
104
|
Whether the local file should be overwritten if it already exists. The default value is
|
114
105
|
`False` - in which case a ValueError will be raised if the file already exists. If set to
|
@@ -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=too-many-lines, invalid-overridden-method
|
6
|
+
# pylint: disable=too-many-lines, invalid-overridden-method
|
7
7
|
|
8
8
|
import warnings
|
9
9
|
from functools import partial
|
@@ -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
|
7
7
|
|
8
8
|
import functools
|
9
9
|
import warnings
|
@@ -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=too-many-lines, invalid-overridden-method
|
6
|
+
# pylint: disable=too-many-lines, invalid-overridden-method
|
7
7
|
|
8
8
|
import functools
|
9
9
|
import warnings
|
@@ -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
|
7
7
|
|
8
8
|
from typing import ( # pylint: disable=unused-import
|
9
9
|
Union, Optional, Any, IO, Iterable, AnyStr, Dict, List, Tuple,
|
@@ -1,13 +1,13 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: azure-storage-blob
|
3
|
-
Version: 12.20.
|
3
|
+
Version: 12.20.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
|
24
|
-
Requires-Dist: cryptography
|
25
|
-
Requires-Dist: typing-extensions
|
26
|
-
Requires-Dist: isodate
|
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]
|
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
|
-
azure/storage/blob/__init__.py,sha256=
|
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=
|
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
5
|
azure/storage/blob/_deserialize.py,sha256=HwoxR0gZmCPAHOGuVH_Zf5Zd4bPlPnEFT9Tcm2R4DJU,8876
|
6
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=4l_Y0WVwc7RyUjfRHFbVvtbdBcPchjnlZJDmcj6BANY,18749
|
9
9
|
azure/storage/blob/_list_blobs_helper.py,sha256=ccWZaWHPiSKxlnEyd6Qe-caVVFmYSrd7u-YO6Tv4PHI,14791
|
10
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=omJx6Ji8TIs3BeD-9dRAJyIc7VEVh-vV4detkjT_5Kg,8113
|
13
|
-
azure/storage/blob/_shared_access_signature.py,sha256=
|
13
|
+
azure/storage/blob/_shared_access_signature.py,sha256=oagWkZQyV6eQCw3DQ6VtHe1EHsrNs906xxyWhxN5QpM,33217
|
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=1ma7QIKf-73nloy-SGWA2WdC1u7JmAqqpcIJKh2v2EM,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=6GXduWBEa3XVdCyacuIHlT-FldUj33ZYMmKyYar87pE,5716
|
@@ -49,13 +49,13 @@ azure/storage/blob/_shared/authentication.py,sha256=ZMx-AgJ9Cac79IBC4bvFHUtkP_XJ
|
|
49
49
|
azure/storage/blob/_shared/base_client.py,sha256=OT_L_9G9kZu5l4iTvxokXMYW0hln0rmOVqHnxTatdes,18500
|
50
50
|
azure/storage/blob/_shared/base_client_async.py,sha256=mfNgLZZjqRGu2hTyUBDuxrXZCXK6qw_VhTEwyAfbIEo,11811
|
51
51
|
azure/storage/blob/_shared/constants.py,sha256=0TnhBNEaZpVq0vECmLoXWSzCajtn9WOlfOfzbMApRb4,620
|
52
|
-
azure/storage/blob/_shared/models.py,sha256=
|
52
|
+
azure/storage/blob/_shared/models.py,sha256=Z3c50xrqhArRulmtJA8QjCALbF9Iqu7zQmuxdtlrU3k,24850
|
53
53
|
azure/storage/blob/_shared/parser.py,sha256=ACpdtwf6lhzmA0ukT3PmxpGVpimVXTy_mMSdixC55R8,1955
|
54
54
|
azure/storage/blob/_shared/policies.py,sha256=SmwPXODNO-I2RsAbxCd3_ZlJ8fVAxM3lx0KbV5N43zU,30816
|
55
55
|
azure/storage/blob/_shared/policies_async.py,sha256=PD060JU3rVszEW-TM7ZiSZjTLI2Sdk5swh5dI06zgr0,12613
|
56
56
|
azure/storage/blob/_shared/request_handlers.py,sha256=0G9eyzMY_8BlLfHA6jbJF75ENcu3xqZ33bHfSRi9HTM,9755
|
57
57
|
azure/storage/blob/_shared/response_handlers.py,sha256=yGBdN5kgPyLUBFaegKG-8q1nvLrh45J7Ccj1q1Q5H68,8909
|
58
|
-
azure/storage/blob/_shared/shared_access_signature.py,sha256=
|
58
|
+
azure/storage/blob/_shared/shared_access_signature.py,sha256=nvUirN6ZbnrZYlhovLNF0qofxxCEzHgkQw5emLdJegA,10608
|
59
59
|
azure/storage/blob/_shared/uploads.py,sha256=f-xbbwYkOGZWr0iTaRJwTyo-XXa0AWdWYNH_CTBnd0M,22158
|
60
60
|
azure/storage/blob/_shared/uploads_async.py,sha256=xc2IM6eLAieNIlRt3kfmiX1xT6sxEVSmva19p0ZYXiY,16783
|
61
61
|
azure/storage/blob/_shared/avro/__init__.py,sha256=Ch-mWS2_vgonM9LjVaETdaW51OL6LfG23X-0tH2AFjw,310
|
@@ -64,18 +64,18 @@ azure/storage/blob/_shared/avro/avro_io_async.py,sha256=ui6Fw9wGVC6UjpvCj7r4wlp9
|
|
64
64
|
azure/storage/blob/_shared/avro/datafile.py,sha256=Mj_f7BoHjkgpMrSR1g9-RDwDv7V82Jogh2YlN-0Z8I0,8459
|
65
65
|
azure/storage/blob/_shared/avro/datafile_async.py,sha256=JCUs5I3crsrFqeHenZ_fQLGj7Z2VSBjzKcI__5fd37I,7292
|
66
66
|
azure/storage/blob/_shared/avro/schema.py,sha256=Z9qcHIEBDbXxkBBs_HYbEWHlZtAbvT302mfWCYDpADI,36201
|
67
|
-
azure/storage/blob/aio/__init__.py,sha256=
|
68
|
-
azure/storage/blob/aio/_blob_client_async.py,sha256=
|
69
|
-
azure/storage/blob/aio/_blob_service_client_async.py,sha256=
|
70
|
-
azure/storage/blob/aio/_container_client_async.py,sha256=
|
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
71
|
azure/storage/blob/aio/_download_async.py,sha256=mj3wkZZNjDNBJhEJGvPjjm_EZXDB-S4y_N0XhYLXhl0,29504
|
72
72
|
azure/storage/blob/aio/_encryption_async.py,sha256=spbWeycNMj38H5ynZ03FRtRu0L0tnl1lQn5UJT6HMAY,2518
|
73
|
-
azure/storage/blob/aio/_lease_async.py,sha256=
|
73
|
+
azure/storage/blob/aio/_lease_async.py,sha256=ZBNV868_FFEY2zyJ-gl_wVBxkXNh6PalRWR0PwzLXuQ,18437
|
74
74
|
azure/storage/blob/aio/_list_blobs_helper.py,sha256=JXrgZb2R3JhNO4P58kzpruRF52nek4JmAixfyaQQNYA,11269
|
75
75
|
azure/storage/blob/aio/_models.py,sha256=k9vJ9GNp1IKfcSBwL1kj8aXq3gm_RYgRtK7_yJm-MTU,7684
|
76
76
|
azure/storage/blob/aio/_upload_helpers.py,sha256=A1L97uaz4fnZ805vYRHYm8ypIDLamuRf5BJIvdNe_nU,13053
|
77
|
-
azure_storage_blob-12.20.
|
78
|
-
azure_storage_blob-12.20.
|
79
|
-
azure_storage_blob-12.20.
|
80
|
-
azure_storage_blob-12.20.
|
81
|
-
azure_storage_blob-12.20.
|
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
|
{azure_storage_blob-12.20.0.dist-info → azure_storage_blob-12.20.0b1.dist-info}/top_level.txt
RENAMED
File without changes
|