azure-storage-blob 12.25.0b1__py3-none-any.whl → 12.26.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 +51 -3
- azure/storage/blob/_blob_client_helpers.py +15 -1
- azure/storage/blob/_generated/_azure_blob_storage.py +1 -1
- azure/storage/blob/_generated/_configuration.py +2 -2
- azure/storage/blob/_generated/_serialization.py +3 -3
- 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/operations/_append_blob_operations.py +5 -4
- azure/storage/blob/_generated/aio/operations/_blob_operations.py +5 -25
- azure/storage/blob/_generated/aio/operations/_block_blob_operations.py +9 -7
- azure/storage/blob/_generated/aio/operations/_container_operations.py +1 -19
- azure/storage/blob/_generated/aio/operations/_page_blob_operations.py +5 -10
- azure/storage/blob/_generated/aio/operations/_service_operations.py +1 -8
- azure/storage/blob/_generated/models/__init__.py +2 -0
- azure/storage/blob/_generated/models/_azure_blob_storage_enums.py +6 -0
- azure/storage/blob/_generated/operations/_append_blob_operations.py +12 -9
- azure/storage/blob/_generated/operations/_blob_operations.py +32 -49
- azure/storage/blob/_generated/operations/_block_blob_operations.py +21 -13
- azure/storage/blob/_generated/operations/_container_operations.py +19 -37
- azure/storage/blob/_generated/operations/_page_blob_operations.py +17 -19
- azure/storage/blob/_generated/operations/_service_operations.py +9 -17
- azure/storage/blob/_quick_query_helper.py +17 -21
- azure/storage/blob/_serialize.py +1 -0
- azure/storage/blob/_shared/avro/avro_io.py +2 -2
- azure/storage/blob/_shared/avro/avro_io_async.py +1 -1
- azure/storage/blob/_shared/base_client.py +6 -2
- azure/storage/blob/_shared/policies_async.py +1 -1
- azure/storage/blob/_shared/request_handlers.py +1 -2
- azure/storage/blob/_shared/shared_access_signature.py +4 -0
- azure/storage/blob/_shared/uploads_async.py +2 -3
- azure/storage/blob/_shared_access_signature.py +3 -1
- azure/storage/blob/_version.py +1 -1
- azure/storage/blob/aio/_blob_client_async.py +189 -5
- azure/storage/blob/aio/_download_async.py +1 -1
- azure/storage/blob/aio/_quick_query_helper_async.py +194 -0
- {azure_storage_blob-12.25.0b1.dist-info → azure_storage_blob-12.26.0b1.dist-info}/METADATA +6 -6
- {azure_storage_blob-12.25.0b1.dist-info → azure_storage_blob-12.26.0b1.dist-info}/RECORD +40 -39
- {azure_storage_blob-12.25.0b1.dist-info → azure_storage_blob-12.26.0b1.dist-info}/WHEEL +1 -1
- {azure_storage_blob-12.25.0b1.dist-info → azure_storage_blob-12.26.0b1.dist-info}/LICENSE +0 -0
- {azure_storage_blob-12.25.0b1.dist-info → azure_storage_blob-12.26.0b1.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,194 @@
|
|
1
|
+
# -------------------------------------------------------------------------
|
2
|
+
# Copyright (c) Microsoft Corporation. All rights reserved.
|
3
|
+
# Licensed under the MIT License. See License.txt in the project root for
|
4
|
+
# license information.
|
5
|
+
# --------------------------------------------------------------------------
|
6
|
+
|
7
|
+
from io import BytesIO
|
8
|
+
from typing import (
|
9
|
+
Any, AsyncGenerator, AsyncIterable, Dict, IO, Optional, Type,
|
10
|
+
TYPE_CHECKING
|
11
|
+
)
|
12
|
+
|
13
|
+
from .._shared.avro.avro_io_async import AsyncDatumReader
|
14
|
+
from .._shared.avro.datafile_async import AsyncDataFileReader
|
15
|
+
|
16
|
+
if TYPE_CHECKING:
|
17
|
+
from .._models import BlobQueryError
|
18
|
+
|
19
|
+
|
20
|
+
class BlobQueryReader: # pylint: disable=too-many-instance-attributes
|
21
|
+
"""A streaming object to read query results."""
|
22
|
+
|
23
|
+
name: str
|
24
|
+
"""The name of the blob being queried."""
|
25
|
+
container: str
|
26
|
+
"""The name of the container where the blob is."""
|
27
|
+
response_headers: Dict[str, Any]
|
28
|
+
"""The response headers of the quick query request."""
|
29
|
+
record_delimiter: str
|
30
|
+
"""The delimiter used to separate lines, or records with the data. The `records`
|
31
|
+
method will return these lines via a generator."""
|
32
|
+
|
33
|
+
def __init__(
|
34
|
+
self, name: str = None, # type: ignore [assignment]
|
35
|
+
container: str = None, # type: ignore [assignment]
|
36
|
+
errors: Any = None,
|
37
|
+
record_delimiter: str = '\n',
|
38
|
+
encoding: Optional[str] = None,
|
39
|
+
headers: Dict[str, Any] = None, # type: ignore [assignment]
|
40
|
+
response: Any = None,
|
41
|
+
error_cls: Type["BlobQueryError"] = None, # type: ignore [assignment]
|
42
|
+
) -> None:
|
43
|
+
self.name = name
|
44
|
+
self.container = container
|
45
|
+
self.response_headers = headers
|
46
|
+
self.record_delimiter = record_delimiter
|
47
|
+
self._size = 0
|
48
|
+
self._bytes_processed = 0
|
49
|
+
self._errors = errors
|
50
|
+
self._encoding = encoding
|
51
|
+
self._parsed_results = AsyncDataFileReader(QuickQueryStreamer(response), AsyncDatumReader())
|
52
|
+
self._error_cls = error_cls
|
53
|
+
|
54
|
+
async def _setup(self):
|
55
|
+
self._parsed_results = await self._parsed_results.init()
|
56
|
+
first_result = await self._parsed_results.__anext__()
|
57
|
+
self._first_result = self._process_record(first_result) # pylint: disable=attribute-defined-outside-init
|
58
|
+
|
59
|
+
def __len__(self) -> int:
|
60
|
+
return self._size
|
61
|
+
|
62
|
+
def _process_record(self, result: Dict[str, Any]) -> Optional[bytes]:
|
63
|
+
self._size = result.get('totalBytes', self._size)
|
64
|
+
self._bytes_processed = result.get('bytesScanned', self._bytes_processed)
|
65
|
+
if 'data' in result:
|
66
|
+
return result.get('data')
|
67
|
+
if 'fatal' in result:
|
68
|
+
error = self._error_cls(
|
69
|
+
error=result['name'],
|
70
|
+
is_fatal=result['fatal'],
|
71
|
+
description=result['description'],
|
72
|
+
position=result['position']
|
73
|
+
)
|
74
|
+
if self._errors:
|
75
|
+
self._errors(error)
|
76
|
+
return None
|
77
|
+
|
78
|
+
async def _aiter_stream(self) -> AsyncGenerator[bytes, None]:
|
79
|
+
if self._first_result is not None:
|
80
|
+
yield self._first_result
|
81
|
+
async for next_result in self._parsed_results:
|
82
|
+
processed_result = self._process_record(next_result)
|
83
|
+
if processed_result is not None:
|
84
|
+
yield processed_result
|
85
|
+
|
86
|
+
async def readall(self) -> bytes:
|
87
|
+
"""Return all query results.
|
88
|
+
|
89
|
+
This operation is blocking until all data is downloaded.
|
90
|
+
|
91
|
+
:returns: The query results.
|
92
|
+
:rtype: bytes
|
93
|
+
"""
|
94
|
+
stream = BytesIO()
|
95
|
+
await self.readinto(stream)
|
96
|
+
data = stream.getvalue()
|
97
|
+
if self._encoding:
|
98
|
+
return data.decode(self._encoding) # type: ignore [return-value]
|
99
|
+
return data
|
100
|
+
|
101
|
+
async def readinto(self, stream: IO) -> None:
|
102
|
+
"""Download the query result to a stream.
|
103
|
+
|
104
|
+
:param IO stream:
|
105
|
+
The stream to download to. This can be an open file-handle,
|
106
|
+
or any writable stream.
|
107
|
+
:returns: None
|
108
|
+
"""
|
109
|
+
async for record in self._aiter_stream():
|
110
|
+
stream.write(record)
|
111
|
+
|
112
|
+
async def records(self) -> AsyncIterable[bytes]:
|
113
|
+
"""Returns a record generator for the query result.
|
114
|
+
|
115
|
+
Records will be returned line by line.
|
116
|
+
|
117
|
+
:returns: A record generator for the query result.
|
118
|
+
:rtype: AsyncIterable[bytes]
|
119
|
+
"""
|
120
|
+
delimiter = self.record_delimiter.encode('utf-8')
|
121
|
+
async for record_chunk in self._aiter_stream():
|
122
|
+
for record in record_chunk.split(delimiter):
|
123
|
+
if self._encoding:
|
124
|
+
yield record.decode(self._encoding) # type: ignore [misc]
|
125
|
+
else:
|
126
|
+
yield record
|
127
|
+
|
128
|
+
|
129
|
+
class QuickQueryStreamer:
|
130
|
+
"""File-like streaming iterator."""
|
131
|
+
|
132
|
+
def __init__(self, generator):
|
133
|
+
self.generator = generator
|
134
|
+
self.iterator = generator.__aiter__()
|
135
|
+
self._buf = b""
|
136
|
+
self._point = 0
|
137
|
+
self._download_offset = 0
|
138
|
+
self._buf_start = 0
|
139
|
+
self.file_length = None
|
140
|
+
|
141
|
+
def __len__(self):
|
142
|
+
return self.file_length
|
143
|
+
|
144
|
+
def __aiter__(self):
|
145
|
+
return self.iterator
|
146
|
+
|
147
|
+
@staticmethod
|
148
|
+
def seekable():
|
149
|
+
return True
|
150
|
+
|
151
|
+
async def __anext__(self):
|
152
|
+
next_part = await self.iterator.__anext__()
|
153
|
+
self._download_offset += len(next_part)
|
154
|
+
return next_part
|
155
|
+
|
156
|
+
def tell(self):
|
157
|
+
return self._point
|
158
|
+
|
159
|
+
async def seek(self, offset, whence=0):
|
160
|
+
if whence == 0:
|
161
|
+
self._point = offset
|
162
|
+
elif whence == 1:
|
163
|
+
self._point += offset
|
164
|
+
else:
|
165
|
+
raise ValueError("whence must be 0 or 1")
|
166
|
+
if self._point < 0: # pylint: disable=consider-using-max-builtin
|
167
|
+
self._point = 0
|
168
|
+
|
169
|
+
async def read(self, size):
|
170
|
+
try:
|
171
|
+
# keep reading from the generator until the buffer of this stream has enough data to read
|
172
|
+
while self._point + size > self._download_offset:
|
173
|
+
self._buf += await self.__anext__()
|
174
|
+
except StopAsyncIteration:
|
175
|
+
self.file_length = self._download_offset
|
176
|
+
|
177
|
+
start_point = self._point
|
178
|
+
|
179
|
+
# EOF
|
180
|
+
self._point = min(self._point + size, self._download_offset)
|
181
|
+
|
182
|
+
relative_start = start_point - self._buf_start
|
183
|
+
if relative_start < 0:
|
184
|
+
raise ValueError("Buffer has dumped too much data")
|
185
|
+
relative_end = relative_start + size
|
186
|
+
data = self._buf[relative_start:relative_end]
|
187
|
+
|
188
|
+
# dump the extra data in buffer
|
189
|
+
# buffer start--------------------16bytes----current read position
|
190
|
+
dumped_size = max(relative_end - 16 - relative_start, 0)
|
191
|
+
self._buf_start += dumped_size
|
192
|
+
self._buf = self._buf[dumped_size:]
|
193
|
+
|
194
|
+
return data
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: azure-storage-blob
|
3
|
-
Version: 12.
|
3
|
+
Version: 12.26.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
|
@@ -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.30.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.30.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,6 +1,6 @@
|
|
1
1
|
azure/storage/blob/__init__.py,sha256=2i-4BEmEBQ_qSjF2BfwSyrZXr2s75WgoZlQ6BY8loxI,10694
|
2
|
-
azure/storage/blob/_blob_client.py,sha256=
|
3
|
-
azure/storage/blob/_blob_client_helpers.py,sha256
|
2
|
+
azure/storage/blob/_blob_client.py,sha256=Lf2FbqpiUlIxzgK-FY3hZU90MAQLN08PEVEr1nwJnyo,189901
|
3
|
+
azure/storage/blob/_blob_client_helpers.py,sha256=QiTLy7UFqKXdFBDLPl37DpU2fay3oXRVKAA3it07VSA,52885
|
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
|
@@ -11,74 +11,75 @@ azure/storage/blob/_encryption.py,sha256=BCqaCshIu1QmsOfcUTmyorO76QS2p80A59LrmJB
|
|
11
11
|
azure/storage/blob/_lease.py,sha256=ReF0nVfZE8p_clUGpebZPprBdXJ7lOGEqXmJUhvsX5U,18336
|
12
12
|
azure/storage/blob/_list_blobs_helper.py,sha256=ElFspHiqQ2vbRvwI9DLY7uKHgDCj1NTQ40icuCOmF0I,13124
|
13
13
|
azure/storage/blob/_models.py,sha256=6LOfUKH9PARguI3T9Vd17GiCK4ZWFljuzZOR2pCVaIk,65926
|
14
|
-
azure/storage/blob/_quick_query_helper.py,sha256=
|
15
|
-
azure/storage/blob/_serialize.py,sha256=
|
16
|
-
azure/storage/blob/_shared_access_signature.py,sha256=
|
14
|
+
azure/storage/blob/_quick_query_helper.py,sha256=18rDrpaths9VrhU0BdX65DMpTczYm8MCYl9Eaf1sZLc,6407
|
15
|
+
azure/storage/blob/_serialize.py,sha256=WVPWpCrFVBKb8PoyZEUjmVIrVwVOyODF1N40QQ5SCpQ,8200
|
16
|
+
azure/storage/blob/_shared_access_signature.py,sha256=x-Jy1Bajer4z2VN9O1iQ1uDmadKR9MywVLPIlNnsQ8Q,35504
|
17
17
|
azure/storage/blob/_upload_helpers.py,sha256=-ZpqzST-wFdWqCm_I4oWGLTMQ5N0aYb3RHxaMvmf9Q4,14688
|
18
|
-
azure/storage/blob/_version.py,sha256=
|
18
|
+
azure/storage/blob/_version.py,sha256=n30B3GOA3U3tioh0qMt1VrjXmykkFXn0NnbsFgPqZ5Q,333
|
19
19
|
azure/storage/blob/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
20
20
|
azure/storage/blob/_generated/__init__.py,sha256=ynWf8-mGV7ImRKnke9UPzyisLsuiM-NrFWKk0sN78bY,989
|
21
|
-
azure/storage/blob/_generated/_azure_blob_storage.py,sha256=
|
22
|
-
azure/storage/blob/_generated/_configuration.py,sha256=
|
21
|
+
azure/storage/blob/_generated/_azure_blob_storage.py,sha256=XngUaedU_ZmNvZ-BK-acbtVR4ejVrvwnSjIJYIL9JW8,5737
|
22
|
+
azure/storage/blob/_generated/_configuration.py,sha256=rh2Z7OZYt0iDLPWFmv_81kG4bm4Pz0to9z4ZtwGidOk,2552
|
23
23
|
azure/storage/blob/_generated/_patch.py,sha256=P7PMm3Gbjlk56lI6B_Ra43hSW5qGMEmN3cNYGH5uZ3s,674
|
24
|
-
azure/storage/blob/_generated/_serialization.py,sha256=
|
24
|
+
azure/storage/blob/_generated/_serialization.py,sha256=vN_jYB0jHUw2hVIWB6M9n6_0AvFw9mFa3ndcz2y6gaQ,82802
|
25
25
|
azure/storage/blob/_generated/py.typed,sha256=dcrsqJrcYfTX-ckLFJMTaj6mD8aDe2u0tkQG-ZYxnEg,26
|
26
26
|
azure/storage/blob/_generated/aio/__init__.py,sha256=ynWf8-mGV7ImRKnke9UPzyisLsuiM-NrFWKk0sN78bY,989
|
27
|
-
azure/storage/blob/_generated/aio/_azure_blob_storage.py,sha256=
|
28
|
-
azure/storage/blob/_generated/aio/_configuration.py,sha256=
|
27
|
+
azure/storage/blob/_generated/aio/_azure_blob_storage.py,sha256=1IL6YNFj6VFNzF8Es0ec2XJGEjxdnRZWmv7193Nnk5Q,5880
|
28
|
+
azure/storage/blob/_generated/aio/_configuration.py,sha256=v6IzBhKMYcLVwWwCmB77HyHfPdPZpY_YX1zq-7Tno1k,2562
|
29
29
|
azure/storage/blob/_generated/aio/_patch.py,sha256=P7PMm3Gbjlk56lI6B_Ra43hSW5qGMEmN3cNYGH5uZ3s,674
|
30
30
|
azure/storage/blob/_generated/aio/operations/__init__.py,sha256=135lckGNaMIThoRPTOBXgX6wLz_jZq-ZlvOIIzxbTGg,1415
|
31
|
-
azure/storage/blob/_generated/aio/operations/_append_blob_operations.py,sha256=
|
32
|
-
azure/storage/blob/_generated/aio/operations/_blob_operations.py,sha256=
|
33
|
-
azure/storage/blob/_generated/aio/operations/_block_blob_operations.py,sha256=
|
34
|
-
azure/storage/blob/_generated/aio/operations/_container_operations.py,sha256=
|
35
|
-
azure/storage/blob/_generated/aio/operations/_page_blob_operations.py,sha256=
|
31
|
+
azure/storage/blob/_generated/aio/operations/_append_blob_operations.py,sha256=9Nc-IbNzuhEfeoLLEZcqe1ngWri_hbjp5sQ6erIW1qU,38388
|
32
|
+
azure/storage/blob/_generated/aio/operations/_blob_operations.py,sha256=ycL27HLKgZqiS4NmfbpyoUsh61lKVzOKWE_jC7pZ1gA,168781
|
33
|
+
azure/storage/blob/_generated/aio/operations/_block_blob_operations.py,sha256=9VP-FwnlN29EkDS-luoxrWZ0MuOywGCbjoHDYAaqKhA,62802
|
34
|
+
azure/storage/blob/_generated/aio/operations/_container_operations.py,sha256=dFUJe_gw19cFwkbYWtqGmgmotUlh9mrcwohI5VCshlo,89741
|
35
|
+
azure/storage/blob/_generated/aio/operations/_page_blob_operations.py,sha256=uWttQQreK87fo9QkGcinAft78t3nkPlA3eKjW2QWYDM,75770
|
36
36
|
azure/storage/blob/_generated/aio/operations/_patch.py,sha256=P7PMm3Gbjlk56lI6B_Ra43hSW5qGMEmN3cNYGH5uZ3s,674
|
37
|
-
azure/storage/blob/_generated/aio/operations/_service_operations.py,sha256=
|
38
|
-
azure/storage/blob/_generated/models/__init__.py,sha256=
|
39
|
-
azure/storage/blob/_generated/models/_azure_blob_storage_enums.py,sha256=
|
37
|
+
azure/storage/blob/_generated/aio/operations/_service_operations.py,sha256=43GKSf0sZmu6_UtaFBBAPb10NGtmKmzzv5B1KMhOa_c,35811
|
38
|
+
azure/storage/blob/_generated/models/__init__.py,sha256=ae4-_RoCsUSVVEdgfxkWU_7LS_9POVjgx4E59RtGp6Y,4662
|
39
|
+
azure/storage/blob/_generated/models/_azure_blob_storage_enums.py,sha256=sxv4FzZDdO0c94hneLhBKTueJiJ3jvuXWeN1SqRizxs,13277
|
40
40
|
azure/storage/blob/_generated/models/_models_py3.py,sha256=zC5S3_2lT7H0BIOjSSQvZF5roOGtCPGk77ZqXeKkreE,110425
|
41
41
|
azure/storage/blob/_generated/models/_patch.py,sha256=P7PMm3Gbjlk56lI6B_Ra43hSW5qGMEmN3cNYGH5uZ3s,674
|
42
42
|
azure/storage/blob/_generated/operations/__init__.py,sha256=135lckGNaMIThoRPTOBXgX6wLz_jZq-ZlvOIIzxbTGg,1415
|
43
|
-
azure/storage/blob/_generated/operations/_append_blob_operations.py,sha256=
|
44
|
-
azure/storage/blob/_generated/operations/_blob_operations.py,sha256=
|
45
|
-
azure/storage/blob/_generated/operations/_block_blob_operations.py,sha256=
|
46
|
-
azure/storage/blob/_generated/operations/_container_operations.py,sha256=
|
47
|
-
azure/storage/blob/_generated/operations/_page_blob_operations.py,sha256=
|
43
|
+
azure/storage/blob/_generated/operations/_append_blob_operations.py,sha256=Rat7a4UUtVfqohF5w_FupQ99rWyRA0xPY13gz8xR3vw,57925
|
44
|
+
azure/storage/blob/_generated/operations/_blob_operations.py,sha256=i0TKFh1mog7D4UiAswkwN30zzS35ZcKZRDmonZRFlvg,237294
|
45
|
+
azure/storage/blob/_generated/operations/_block_blob_operations.py,sha256=RVawehH06b4LghZnnt9ofwFWx4JOupdrTeaeFX5AtnU,95207
|
46
|
+
azure/storage/blob/_generated/operations/_container_operations.py,sha256=fbuaUdq8yZdFCKb-1ygP3QHzVeENWQQwwpZVbdEtomc,127966
|
47
|
+
azure/storage/blob/_generated/operations/_page_blob_operations.py,sha256=5hR3nKTPwOyMgUm13D2SHCa-SxSnbl9fcyVL7iJ621E,114169
|
48
48
|
azure/storage/blob/_generated/operations/_patch.py,sha256=P7PMm3Gbjlk56lI6B_Ra43hSW5qGMEmN3cNYGH5uZ3s,674
|
49
|
-
azure/storage/blob/_generated/operations/_service_operations.py,sha256=
|
49
|
+
azure/storage/blob/_generated/operations/_service_operations.py,sha256=gDkjjCo7q9v5K9CYzm0o_oF8pi8RVi2sY7Ed0Vp7-TQ,49733
|
50
50
|
azure/storage/blob/_shared/__init__.py,sha256=Ohb4NSCuB9VXGEqjU2o9VZ5L98-a7c8KWZvrujnSFk8,1477
|
51
51
|
azure/storage/blob/_shared/authentication.py,sha256=RNKYwbK-IbeZ2rPzeW5PX677NB4GZdwxmyVhb8KmskU,9445
|
52
|
-
azure/storage/blob/_shared/base_client.py,sha256=
|
52
|
+
azure/storage/blob/_shared/base_client.py,sha256=xp5p0Xf0AOf4oaaDlsePLdivMQS13TNarjChF7y6NEY,18558
|
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
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
|
59
|
-
azure/storage/blob/_shared/request_handlers.py,sha256=
|
58
|
+
azure/storage/blob/_shared/policies_async.py,sha256=-wzjJt621uowea0dCgr90NTBbPCRu52DB-6oWt5TA8U,13507
|
59
|
+
azure/storage/blob/_shared/request_handlers.py,sha256=iccEwX77CCi0KwytBbMyPRvaOc1iPZXZlhijNGAT4_E,9739
|
60
60
|
azure/storage/blob/_shared/response_handlers.py,sha256=S8S8RU2GCh5EtLdO_CjenzpDKexxa3y9FN60mXmML9o,9206
|
61
|
-
azure/storage/blob/_shared/shared_access_signature.py,sha256=
|
61
|
+
azure/storage/blob/_shared/shared_access_signature.py,sha256=bNvQTHZDPoV64TaM_IGs7Lbni2poCIRsqiNthT9JcE8,11334
|
62
62
|
azure/storage/blob/_shared/uploads.py,sha256=sNjyP-WqhDTbKHHJHezbY6Rac6KdhbUCqDGn1xD72Vk,22017
|
63
|
-
azure/storage/blob/_shared/uploads_async.py,sha256=
|
63
|
+
azure/storage/blob/_shared/uploads_async.py,sha256=yOL2mba3QQN9DyIE-0GGMNzHIpwVLdk8YAX3_r5TcLw,16666
|
64
64
|
azure/storage/blob/_shared/avro/__init__.py,sha256=Ch-mWS2_vgonM9LjVaETdaW51OL6LfG23X-0tH2AFjw,310
|
65
|
-
azure/storage/blob/_shared/avro/avro_io.py,sha256=
|
66
|
-
azure/storage/blob/_shared/avro/avro_io_async.py,sha256=
|
65
|
+
azure/storage/blob/_shared/avro/avro_io.py,sha256=ATtDzDD8JkZf1ChKCkzUzxP5K30N2pT5LgHmf0GRXu8,16099
|
66
|
+
azure/storage/blob/_shared/avro/avro_io_async.py,sha256=6XhOzcsx6j0odhLQ4d2gxFyqg7EIfO9QayYfYHe-Wac,16239
|
67
67
|
azure/storage/blob/_shared/avro/datafile.py,sha256=L0xC3Na0Zyg-I6lZjW8Qp6R4wvEnGms35CAmNjh9oPU,8461
|
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=
|
71
|
+
azure/storage/blob/aio/_blob_client_async.py,sha256=Ee95HkHlGgCU-AsSCC9bgOH1eKM2nGYq2zig1bOZEwc,192382
|
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=
|
74
|
+
azure/storage/blob/aio/_download_async.py,sha256=bZC7sSrh2BWSbOttuBFUkWk7eSJ_-t7diZIr-DlwQWQ,38145
|
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
|
+
azure/storage/blob/aio/_quick_query_helper_async.py,sha256=URxdRkzIszmWliSEB-jqMNNeBjQs-SKTNH9Agop21Bs,6733
|
79
80
|
azure/storage/blob/aio/_upload_helpers.py,sha256=zROsVN6PK2Cn59Ysq08Ide5T1IGG2yH7oK9ZCn5uQXs,14038
|
80
|
-
azure_storage_blob-12.
|
81
|
-
azure_storage_blob-12.
|
82
|
-
azure_storage_blob-12.
|
83
|
-
azure_storage_blob-12.
|
84
|
-
azure_storage_blob-12.
|
81
|
+
azure_storage_blob-12.26.0b1.dist-info/LICENSE,sha256=_VMkgdgo4ToLE8y1mOAjOKNhd0BnWoYu5r3BVBto6T0,1073
|
82
|
+
azure_storage_blob-12.26.0b1.dist-info/METADATA,sha256=pUq0-xe7tKfQyp8_nRW8gGl71vRproXmWhjiZQJhvwU,26227
|
83
|
+
azure_storage_blob-12.26.0b1.dist-info/WHEEL,sha256=iAkIy5fosb7FzIOwONchHf19Qu7_1wCWyFNR5gu9nU0,91
|
84
|
+
azure_storage_blob-12.26.0b1.dist-info/top_level.txt,sha256=S7DhWV9m80TBzAhOFjxDUiNbKszzoThbnrSz5MpbHSQ,6
|
85
|
+
azure_storage_blob-12.26.0b1.dist-info/RECORD,,
|
File without changes
|
{azure_storage_blob-12.25.0b1.dist-info → azure_storage_blob-12.26.0b1.dist-info}/top_level.txt
RENAMED
File without changes
|