azure-storage-blob 12.19.0b1__py3-none-any.whl → 12.20.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 (58) hide show
  1. azure/storage/blob/__init__.py +17 -5
  2. azure/storage/blob/_blob_client.py +26 -6
  3. azure/storage/blob/_blob_service_client.py +11 -4
  4. azure/storage/blob/_container_client.py +45 -17
  5. azure/storage/blob/_download.py +5 -4
  6. azure/storage/blob/_encryption.py +254 -165
  7. azure/storage/blob/_generated/_azure_blob_storage.py +21 -3
  8. azure/storage/blob/_generated/_configuration.py +4 -11
  9. azure/storage/blob/_generated/_serialization.py +41 -49
  10. azure/storage/blob/_generated/aio/_azure_blob_storage.py +23 -3
  11. azure/storage/blob/_generated/aio/_configuration.py +4 -11
  12. azure/storage/blob/_generated/aio/operations/_append_blob_operations.py +24 -58
  13. azure/storage/blob/_generated/aio/operations/_blob_operations.py +123 -306
  14. azure/storage/blob/_generated/aio/operations/_block_blob_operations.py +37 -86
  15. azure/storage/blob/_generated/aio/operations/_container_operations.py +98 -289
  16. azure/storage/blob/_generated/aio/operations/_page_blob_operations.py +51 -150
  17. azure/storage/blob/_generated/aio/operations/_service_operations.py +49 -125
  18. azure/storage/blob/_generated/models/_models_py3.py +31 -31
  19. azure/storage/blob/_generated/operations/_append_blob_operations.py +25 -59
  20. azure/storage/blob/_generated/operations/_blob_operations.py +123 -306
  21. azure/storage/blob/_generated/operations/_block_blob_operations.py +39 -88
  22. azure/storage/blob/_generated/operations/_container_operations.py +100 -291
  23. azure/storage/blob/_generated/operations/_page_blob_operations.py +52 -151
  24. azure/storage/blob/_generated/operations/_service_operations.py +50 -126
  25. azure/storage/blob/_lease.py +1 -0
  26. azure/storage/blob/_models.py +3 -4
  27. azure/storage/blob/_serialize.py +1 -0
  28. azure/storage/blob/_shared/authentication.py +1 -1
  29. azure/storage/blob/_shared/avro/avro_io.py +0 -6
  30. azure/storage/blob/_shared/avro/avro_io_async.py +0 -6
  31. azure/storage/blob/_shared/avro/datafile.py +0 -4
  32. azure/storage/blob/_shared/avro/datafile_async.py +0 -4
  33. azure/storage/blob/_shared/avro/schema.py +4 -4
  34. azure/storage/blob/_shared/base_client.py +72 -87
  35. azure/storage/blob/_shared/base_client_async.py +115 -27
  36. azure/storage/blob/_shared/models.py +120 -27
  37. azure/storage/blob/_shared/parser.py +7 -6
  38. azure/storage/blob/_shared/policies.py +96 -66
  39. azure/storage/blob/_shared/policies_async.py +48 -21
  40. azure/storage/blob/_shared/response_handlers.py +14 -16
  41. azure/storage/blob/_shared/shared_access_signature.py +3 -3
  42. azure/storage/blob/_shared_access_signature.py +48 -33
  43. azure/storage/blob/_upload_helpers.py +4 -7
  44. azure/storage/blob/_version.py +1 -1
  45. azure/storage/blob/aio/__init__.py +13 -4
  46. azure/storage/blob/aio/_blob_client_async.py +17 -6
  47. azure/storage/blob/aio/_blob_service_client_async.py +6 -3
  48. azure/storage/blob/aio/_container_client_async.py +34 -13
  49. azure/storage/blob/aio/_download_async.py +11 -10
  50. azure/storage/blob/aio/_encryption_async.py +72 -0
  51. azure/storage/blob/aio/_lease_async.py +1 -1
  52. azure/storage/blob/aio/_upload_helpers.py +8 -10
  53. {azure_storage_blob-12.19.0b1.dist-info → azure_storage_blob-12.20.0.dist-info}/METADATA +11 -11
  54. azure_storage_blob-12.20.0.dist-info/RECORD +81 -0
  55. {azure_storage_blob-12.19.0b1.dist-info → azure_storage_blob-12.20.0.dist-info}/WHEEL +1 -1
  56. azure_storage_blob-12.19.0b1.dist-info/RECORD +0 -80
  57. {azure_storage_blob-12.19.0b1.dist-info → azure_storage_blob-12.20.0.dist-info}/LICENSE +0 -0
  58. {azure_storage_blob-12.19.0b1.dist-info → azure_storage_blob-12.20.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=too-many-lines, invalid-overridden-method
6
+ # pylint: disable=too-many-lines, invalid-overridden-method, docstring-keyword-should-match-keyword-only
7
7
 
8
8
  import functools
9
9
  import warnings
@@ -208,6 +208,7 @@ class ContainerClient(AsyncStorageAccountHostsMixin, ContainerClientBase, Storag
208
208
  This value is not tracked or validated on the client. To configure client-side network timesouts
209
209
  see `here <https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/storage/azure-storage-blob
210
210
  #other-client--per-operation-configuration>`_.
211
+ :returns: The renamed container.
211
212
  :rtype: ~azure.storage.blob.ContainerClient
212
213
  """
213
214
  lease = kwargs.pop('lease', None)
@@ -461,6 +462,7 @@ class ContainerClient(AsyncStorageAccountHostsMixin, ContainerClientBase, Storag
461
462
  see `here <https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/storage/azure-storage-blob
462
463
  #other-client--per-operation-configuration>`_.
463
464
  :returns: Container-updated property dict (Etag and last modified).
465
+ :rtype: Dict[str, Union[str, datetime]]
464
466
 
465
467
  .. admonition:: Example:
466
468
 
@@ -647,8 +649,11 @@ class ContainerClient(AsyncStorageAccountHostsMixin, ContainerClientBase, Storag
647
649
  process_storage_error(error)
648
650
 
649
651
  @distributed_trace
650
- def list_blobs(self, name_starts_with=None, include=None, **kwargs):
651
- # type: (Optional[str], Optional[Union[str, List[str]]], **Any) -> AsyncItemPaged[BlobProperties]
652
+ def list_blobs(
653
+ self, name_starts_with: Optional[str] = None,
654
+ include: Optional[Union[str, List[str]]] = None,
655
+ **kwargs: Any
656
+ ) -> AsyncItemPaged[BlobProperties]:
652
657
  """Returns a generator to list the blobs under the specified container.
653
658
  The generator will lazily follow the continuation tokens returned by
654
659
  the service.
@@ -679,6 +684,10 @@ class ContainerClient(AsyncStorageAccountHostsMixin, ContainerClientBase, Storag
679
684
  :dedent: 12
680
685
  :caption: List the blobs in the container.
681
686
  """
687
+ if kwargs.pop('prefix', None):
688
+ raise ValueError("Passing 'prefix' has no effect on filtering, " +
689
+ "please use the 'name_starts_with' parameter instead.")
690
+
682
691
  if include and not isinstance(include, list):
683
692
  include = [include]
684
693
 
@@ -718,6 +727,10 @@ class ContainerClient(AsyncStorageAccountHostsMixin, ContainerClientBase, Storag
718
727
  :returns: An iterable (auto-paging) response of blob names as strings.
719
728
  :rtype: ~azure.core.async_paging.AsyncItemPaged[str]
720
729
  """
730
+ if kwargs.pop('prefix', None):
731
+ raise ValueError("Passing 'prefix' has no effect on filtering, " +
732
+ "please use the 'name_starts_with' parameter instead.")
733
+
721
734
  name_starts_with = kwargs.pop('name_starts_with', None)
722
735
  results_per_page = kwargs.pop('results_per_page', None)
723
736
  timeout = kwargs.pop('timeout', None)
@@ -739,12 +752,11 @@ class ContainerClient(AsyncStorageAccountHostsMixin, ContainerClientBase, Storag
739
752
 
740
753
  @distributed_trace
741
754
  def walk_blobs(
742
- self, name_starts_with=None, # type: Optional[str]
743
- include=None, # type: Optional[Union[List[str], str]]
744
- delimiter="/", # type: str
745
- **kwargs # type: Optional[Any]
746
- ):
747
- # type: (...) -> AsyncItemPaged[BlobProperties]
755
+ self, name_starts_with: Optional[str] = None,
756
+ include: Optional[Union[List[str], str]] = None,
757
+ delimiter: str = "/",
758
+ **kwargs: Any
759
+ ) -> AsyncItemPaged[BlobProperties]:
748
760
  """Returns a generator to list the blobs under the specified container.
749
761
  The generator will lazily follow the continuation tokens returned by
750
762
  the service. This operation will list blobs in accordance with a hierarchy,
@@ -772,6 +784,10 @@ class ContainerClient(AsyncStorageAccountHostsMixin, ContainerClientBase, Storag
772
784
  :returns: An iterable (auto-paging) response of BlobProperties.
773
785
  :rtype: ~azure.core.async_paging.AsyncItemPaged[~azure.storage.blob.BlobProperties]
774
786
  """
787
+ if kwargs.pop('prefix', None):
788
+ raise ValueError("Passing 'prefix' has no effect on filtering, " +
789
+ "please use the 'name_starts_with' parameter instead.")
790
+
775
791
  if include and not isinstance(include, list):
776
792
  include = [include]
777
793
 
@@ -838,6 +854,7 @@ class ContainerClient(AsyncStorageAccountHostsMixin, ContainerClientBase, Storag
838
854
 
839
855
  :param str name: The blob with which to interact.
840
856
  :param data: The blob data to upload.
857
+ :type data: Union[bytes, str, Iterable[AnyStr], AsyncIterable[AnyStr], IO[AnyStr]]
841
858
  :param ~azure.storage.blob.BlobType blob_type: The type of the blob. This can be
842
859
  either BlockBlob, PageBlob or AppendBlob. The default value is BlockBlob.
843
860
  :param int length:
@@ -950,7 +967,8 @@ class ContainerClient(AsyncStorageAccountHostsMixin, ContainerClientBase, Storag
950
967
  """
951
968
  if isinstance(name, BlobProperties):
952
969
  warnings.warn(
953
- "The use of a 'BlobProperties' instance for param blob is deprecated. Please use str instead.",
970
+ "The use of a 'BlobProperties' instance for param name is deprecated. " +
971
+ "Please use 'BlobProperties.name' or any other str input type instead.",
954
972
  DeprecationWarning
955
973
  )
956
974
  blob = self.get_blob_client(name)
@@ -1036,7 +1054,8 @@ class ContainerClient(AsyncStorageAccountHostsMixin, ContainerClientBase, Storag
1036
1054
  """
1037
1055
  if isinstance(blob, BlobProperties):
1038
1056
  warnings.warn(
1039
- "The use of a 'BlobProperties' instance for param blob is deprecated. Please use str instead.",
1057
+ "The use of a 'BlobProperties' instance for param blob is deprecated. " +
1058
+ "Please use 'BlobProperties.name' or any other str input type instead.",
1040
1059
  DeprecationWarning
1041
1060
  )
1042
1061
  blob = self.get_blob_client(blob) # type: ignore
@@ -1161,7 +1180,8 @@ class ContainerClient(AsyncStorageAccountHostsMixin, ContainerClientBase, Storag
1161
1180
  """
1162
1181
  if isinstance(blob, BlobProperties):
1163
1182
  warnings.warn(
1164
- "The use of a 'BlobProperties' instance for param blob is deprecated. Please use str instead.",
1183
+ "The use of a 'BlobProperties' instance for param blob is deprecated. " +
1184
+ "Please use 'BlobProperties.name' or any other str input type instead.",
1165
1185
  DeprecationWarning
1166
1186
  )
1167
1187
  blob_client = self.get_blob_client(blob) # type: ignore
@@ -1424,7 +1444,8 @@ class ContainerClient(AsyncStorageAccountHostsMixin, ContainerClientBase, Storag
1424
1444
  """
1425
1445
  if isinstance(blob, BlobProperties):
1426
1446
  warnings.warn(
1427
- "The use of a 'BlobProperties' instance for param blob is deprecated. Please use str instead.",
1447
+ "The use of a 'BlobProperties' instance for param blob is deprecated. " +
1448
+ "Please use 'BlobProperties.name' or any other str input type instead.",
1428
1449
  DeprecationWarning
1429
1450
  )
1430
1451
  blob_name = _get_blob_name(blob)
@@ -95,7 +95,8 @@ class _AsyncChunkDownloader(_ChunkDownloader):
95
95
  # No need to download the empty chunk from server if there's no data in the chunk to be downloaded.
96
96
  # Do optimize and create empty chunk locally if condition is met.
97
97
  if self._do_optimize(download_range[0], download_range[1]):
98
- chunk_data = b"\x00" * self.chunk_size
98
+ data_size = download_range[1] - download_range[0] + 1
99
+ chunk_data = b"\x00" * data_size
99
100
  else:
100
101
  range_header, range_validation = validate_and_format_range_headers(
101
102
  download_range[0],
@@ -135,7 +136,7 @@ class _AsyncChunkIterator(object):
135
136
  self._current_content = content
136
137
  self._iter_downloader = downloader
137
138
  self._iter_chunks = None
138
- self._complete = (size == 0)
139
+ self._complete = size == 0
139
140
 
140
141
  def __len__(self):
141
142
  return self.size
@@ -527,11 +528,11 @@ class StorageStreamDownloader(Generic[T]): # pylint: disable=too-many-instance-
527
528
  except HttpResponseError as error:
528
529
  process_storage_error(error)
529
530
  try:
530
- next_chunk = next(dl_tasks)
531
+ for _ in range(0, len(done)):
532
+ next_chunk = next(dl_tasks)
533
+ running_futures.add(asyncio.ensure_future(downloader.process_chunk(next_chunk)))
531
534
  except StopIteration:
532
535
  break
533
- else:
534
- running_futures.add(asyncio.ensure_future(downloader.process_chunk(next_chunk)))
535
536
 
536
537
  if running_futures:
537
538
  # Wait for the remaining downloads to finish
@@ -605,10 +606,10 @@ class StorageStreamDownloader(Generic[T]): # pylint: disable=too-many-instance-
605
606
  self._encoding = encoding
606
607
  return await self.readall()
607
608
 
608
- async def readinto(self, stream: IO[T]) -> int:
609
+ async def readinto(self, stream: IO[bytes]) -> int:
609
610
  """Download the contents of this blob to a stream.
610
611
 
611
- :param IO[T] stream:
612
+ :param IO[bytes] stream:
612
613
  The stream to download to. This can be an open file-handle,
613
614
  or any writable stream. The stream must be seekable if the download
614
615
  uses more than one parallel connection.
@@ -683,11 +684,11 @@ class StorageStreamDownloader(Generic[T]): # pylint: disable=too-many-instance-
683
684
  except HttpResponseError as error:
684
685
  process_storage_error(error)
685
686
  try:
686
- next_chunk = next(dl_tasks)
687
+ for _ in range(0, len(done)):
688
+ next_chunk = next(dl_tasks)
689
+ running_futures.add(asyncio.ensure_future(downloader.process_chunk(next_chunk)))
687
690
  except StopIteration:
688
691
  break
689
- else:
690
- running_futures.add(asyncio.ensure_future(downloader.process_chunk(next_chunk)))
691
692
 
692
693
  if running_futures:
693
694
  # Wait for the remaining downloads to finish
@@ -0,0 +1,72 @@
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
+ import inspect
8
+ import sys
9
+ from io import BytesIO
10
+ from typing import IO
11
+
12
+ from .._encryption import _GCM_REGION_DATA_LENGTH, encrypt_data_v2
13
+
14
+
15
+ class GCMBlobEncryptionStream:
16
+ """
17
+ An async stream that performs AES-GCM encryption on the given data as
18
+ it's streamed. Data is read and encrypted in regions. The stream
19
+ will use the same encryption key and will generate a guaranteed unique
20
+ nonce for each encryption region.
21
+ """
22
+ def __init__(
23
+ self, content_encryption_key: bytes,
24
+ data_stream: IO[bytes],
25
+ ) -> None:
26
+ """
27
+ :param bytes content_encryption_key: The encryption key to use.
28
+ :param IO[bytes] data_stream: The data stream to read data from.
29
+ """
30
+ self.content_encryption_key = content_encryption_key
31
+ self.data_stream = data_stream
32
+
33
+ self.offset = 0
34
+ self.current = b''
35
+ self.nonce_counter = 0
36
+
37
+ async def read(self, size: int = -1) -> bytes:
38
+ """
39
+ Read data from the stream. Specify -1 to read all available data.
40
+
41
+ :param int size: The amount of data to read. Defaults to -1 for all data.
42
+ :return: The bytes read.
43
+ :rtype: bytes
44
+ """
45
+ result = BytesIO()
46
+ remaining = sys.maxsize if size == -1 else size
47
+
48
+ while remaining > 0:
49
+ # Start by reading from current
50
+ if len(self.current) > 0:
51
+ read = min(remaining, len(self.current))
52
+ result.write(self.current[:read])
53
+
54
+ self.current = self.current[read:]
55
+ self.offset += read
56
+ remaining -= read
57
+
58
+ if remaining > 0:
59
+ # Read one region of data and encrypt it
60
+ data = self.data_stream.read(_GCM_REGION_DATA_LENGTH)
61
+ if inspect.isawaitable(data):
62
+ data = await data
63
+
64
+ if len(data) == 0:
65
+ # No more data to read
66
+ break
67
+
68
+ self.current = encrypt_data_v2(data, self.nonce_counter, self.content_encryption_key)
69
+ # IMPORTANT: Must increment the nonce each time.
70
+ self.nonce_counter += 1
71
+
72
+ return result.getvalue()
@@ -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,
@@ -23,8 +23,8 @@ from .._generated.models import (
23
23
  AppendPositionAccessConditions,
24
24
  ModifiedAccessConditions,
25
25
  )
26
+ from ._encryption_async import GCMBlobEncryptionStream
26
27
  from .._encryption import (
27
- GCMBlobEncryptionStream,
28
28
  encrypt_blob,
29
29
  get_adjusted_upload_size,
30
30
  get_blob_encryptor_and_padder,
@@ -40,7 +40,6 @@ if TYPE_CHECKING:
40
40
 
41
41
  async def upload_block_blob( # pylint: disable=too-many-locals, too-many-statements
42
42
  client=None,
43
- data=None,
44
43
  stream=None,
45
44
  length=None,
46
45
  overwrite=None,
@@ -68,17 +67,16 @@ async def upload_block_blob( # pylint: disable=too-many-locals, too-many-statem
68
67
 
69
68
  # Do single put if the size is smaller than config.max_single_put_size
70
69
  if adjusted_count is not None and (adjusted_count <= blob_settings.max_single_put_size):
71
- try:
72
- data = data.read(length)
73
- if inspect.isawaitable(data):
74
- data = await data
75
- if not isinstance(data, bytes):
76
- raise TypeError('Blob data should be of type bytes.')
77
- except AttributeError:
78
- pass
70
+ data = stream.read(length)
71
+ if inspect.isawaitable(data):
72
+ data = await data
73
+ if not isinstance(data, bytes):
74
+ raise TypeError('Blob data should be of type bytes.')
75
+
79
76
  if encryption_options.get('key'):
80
77
  encryption_data, data = encrypt_blob(data, encryption_options['key'], encryption_options['version'])
81
78
  headers['x-ms-meta-encryptiondata'] = encryption_data
79
+
82
80
  response = await client.upload(
83
81
  body=data,
84
82
  content_length=adjusted_count,
@@ -1,31 +1,31 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: azure-storage-blob
3
- Version: 12.19.0b1
3
+ Version: 12.20.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 :: 4 - Beta
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
14
- Classifier: Programming Language :: Python :: 3.7
15
14
  Classifier: Programming Language :: Python :: 3.8
16
15
  Classifier: Programming Language :: Python :: 3.9
17
16
  Classifier: Programming Language :: Python :: 3.10
18
17
  Classifier: Programming Language :: Python :: 3.11
18
+ Classifier: Programming Language :: Python :: 3.12
19
19
  Classifier: License :: OSI Approved :: MIT License
20
- Requires-Python: >=3.7
20
+ Requires-Python: >=3.8
21
21
  Description-Content-Type: text/markdown
22
22
  License-File: LICENSE
23
- Requires-Dist: azure-core <2.0.0,>=1.28.0
24
- Requires-Dist: cryptography >=2.1.4
25
- Requires-Dist: typing-extensions >=4.3.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] <2.0.0,>=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.
@@ -49,7 +49,7 @@ Blob storage is ideal for:
49
49
  ## Getting started
50
50
 
51
51
  ### Prerequisites
52
- * Python 3.7 or later is required to use this package. For more details, please read our page on [Azure SDK for Python version support policy](https://github.com/Azure/azure-sdk-for-python/wiki/Azure-SDKs-Python-version-support-policy).
52
+ * Python 3.8 or later is required to use this package. For more details, please read our page on [Azure SDK for Python version support policy](https://github.com/Azure/azure-sdk-for-python/wiki/Azure-SDKs-Python-version-support-policy).
53
53
  * You must have an [Azure subscription](https://azure.microsoft.com/free/) and an
54
54
  [Azure storage account](https://docs.microsoft.com/azure/storage/common/storage-account-overview) to use this package.
55
55
 
@@ -258,7 +258,7 @@ container_client = ContainerClient.from_connection_string(conn_str="<connection_
258
258
  container_client.create_container()
259
259
  ```
260
260
 
261
- Use the async client to upload a blob
261
+ Use the async client to create a container
262
262
 
263
263
  ```python
264
264
  from azure.storage.blob.aio import ContainerClient
@@ -0,0 +1,81 @@
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
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=YmyVL3IYFONpwTPmvzGIggwRIk6-xuGqyq39WWKjP9M,18811
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=wPh-iVxJjqCYxIhLGc3SSiWrD3quYy0c5Kk6aMZG9AU,33279
14
+ azure/storage/blob/_upload_helpers.py,sha256=ix83D7cWryDubmOibgRCA0uODNzq4X7m-dSbADdIDd0,13831
15
+ azure/storage/blob/_version.py,sha256=0sos4pu7n422VpT4nfZ3hyFOqTCMNM2sje_JelVkdhY,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=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=aDydzgBj2_-WfnlT1-nOhJt-FHxOU8BG0T0K68BejNk,24907
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=EofvWjPEFXq7ELO8x9VmThCaFUJuAdCeMUOboDdDK8w,10670
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=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
72
+ 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/_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.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,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: bdist_wheel (0.41.2)
2
+ Generator: bdist_wheel (0.37.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5
 
@@ -1,80 +0,0 @@
1
- azure/storage/blob/__init__.py,sha256=sDTaFCWfRO7YvOXyOCqyA20geR5Qc_8BSjF3PyZC3qU,10363
2
- azure/storage/blob/_blob_client.py,sha256=9F_JPYQHWPU4DoQm8I15Nuf2ugJOc16uzlpOpoInrKw,236261
3
- azure/storage/blob/_blob_service_client.py,sha256=xq9yisZtJfSRp96lGIQXNxJiBsyP3fsUMPNJC1rpzmg,40755
4
- azure/storage/blob/_container_client.py,sha256=gMeTTT1SV1tFGFfrRMRAlwotmHO-edPxJ9fhlDETOjQ,94590
5
- azure/storage/blob/_deserialize.py,sha256=HwoxR0gZmCPAHOGuVH_Zf5Zd4bPlPnEFT9Tcm2R4DJU,8876
6
- azure/storage/blob/_download.py,sha256=RwORtC1Y41dcCXfqvmWiGVrNpTa9fKXZmfDkuj1ov18,32373
7
- azure/storage/blob/_encryption.py,sha256=YNtDRbyP7EI8jD1i6Kitz00_lRNyEeWcy-6GfOg9G4s,43167
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=ejDwLc05_loYsvzjErFc1Ebcz2USv5j30HTagze6rgE,57012
11
- azure/storage/blob/_quick_query_helper.py,sha256=D5TlBTUVf5C8NxQjG4B5hdyHCPcQDkp27qyIonqZPE0,6369
12
- azure/storage/blob/_serialize.py,sha256=VnEtDxPBJQok_cBIrx3CWXGUnbSNO5qG6MX62hqT3Wo,8095
13
- azure/storage/blob/_shared_access_signature.py,sha256=EwR3OHuwE2jFGNK8BSRItBk5RXgP-bbm8Ga92iWAysc,32897
14
- azure/storage/blob/_upload_helpers.py,sha256=mLLm-k5yefa_7IkyiSAS1D1sh0DgZirO4AezvgkgRgg,13932
15
- azure/storage/blob/_version.py,sha256=v6nKlCcbe3EoR_A7PBbsEMe6IK3IQcQ1H8kXrRDYyIA,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=hiHiNSJj3bbXvke7eYn3CCAgXIhMQUt_QhmXCM8yVnc,4804
19
- azure/storage/blob/_generated/_configuration.py,sha256=XpknWk-QKRt1ssnKaQGMI4NwAXioIr1smbbsD-1TQZg,2843
20
- azure/storage/blob/_generated/_patch.py,sha256=sPWmWHgf_Hdx9esBYyE8rVm0CcbmDQh40ZSugcQg7YY,1530
21
- azure/storage/blob/_generated/_serialization.py,sha256=CKPwDpdXUvOK3xxOQKRMRDgPTzrM1URIeDpHX9-tiBY,79289
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=tDqk6Cn3I4nU6cpa24vNDm9Sk7rVy-qpMGhwTOHdE2k,4933
25
- azure/storage/blob/_generated/aio/_configuration.py,sha256=sP81s-hdqX6VQSdFzU-bbY06XnFNP-EMbMgrjIo1adE,2853
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=RRBTOVBCJuDXw-5q5TOnYZml5ilZLPmVKsUEJ1yWyhk,38881
29
- azure/storage/blob/_generated/aio/operations/_blob_operations.py,sha256=Pnsv-wXPsjCn5P0G8pg3iU9bHvcD8HYvh1-zWMqpAIY,175055
30
- azure/storage/blob/_generated/aio/operations/_block_blob_operations.py,sha256=Y5kqbnUkgl_45xNNRJ1wxP9D-HXfvML6CGpOfGMdAXY,62964
31
- azure/storage/blob/_generated/aio/operations/_container_operations.py,sha256=ob7Oi--RvoyWMkV-Stv62V9x87CILMA0Mov-e0kuEAc,99614
32
- azure/storage/blob/_generated/aio/operations/_page_blob_operations.py,sha256=VL-uuwE7jULSV9Jr2yhyGqq2pOQhpjP5jqIh0cj8Vg4,80318
33
- azure/storage/blob/_generated/aio/operations/_patch.py,sha256=1SvcsuOv1jiGgnGbfnBlSvC7cC44hn2mkc4BEvrsiLM,791
34
- azure/storage/blob/_generated/aio/operations/_service_operations.py,sha256=HKEH0ms2Xx8xcNV45-ZEUfogfvfV1CHDjkZLguCXxGc,38596
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=jsBFtTaHTZgpFHZXQVwkY_5nQ1gJJX9QZ-Hx_lUYgN0,110581
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=zKUoybHLJk9wyd0pq27S0ZdT_Z5WVz9y1FhbjD3CGwI,57545
41
- azure/storage/blob/_generated/operations/_blob_operations.py,sha256=vQSh4YPfnS6AeSMkHWcqgrEbH6w38zlpd-RnNmokDFw,240883
42
- azure/storage/blob/_generated/operations/_block_blob_operations.py,sha256=EUulga0mv4KGtLYyEkwwd2pkPSUZ42_sBLhADtGQedg,93753
43
- azure/storage/blob/_generated/operations/_container_operations.py,sha256=yVvNAHqZA9s6V_LWerAOqg0EKyQJVcNBjBjcv8rrWAc,136849
44
- azure/storage/blob/_generated/operations/_page_blob_operations.py,sha256=IUhGHvMw7cpLMB_TTNJFWluZLkIzjypgWwByhREF888,117709
45
- azure/storage/blob/_generated/operations/_patch.py,sha256=1SvcsuOv1jiGgnGbfnBlSvC7cC44hn2mkc4BEvrsiLM,791
46
- azure/storage/blob/_generated/operations/_service_operations.py,sha256=COKPwNmcvmoAI_Rem1_ynp34dBOKnBhijIZQ0sW3a9M,52096
47
- azure/storage/blob/_shared/__init__.py,sha256=Ohb4NSCuB9VXGEqjU2o9VZ5L98-a7c8KWZvrujnSFk8,1477
48
- azure/storage/blob/_shared/authentication.py,sha256=Bgl4lWePRiXA2Dx5Qf0CUSFb7UQ7_vzM9gisWxsptR8,7187
49
- azure/storage/blob/_shared/base_client.py,sha256=YH2mBLSD2xoJfWKvLyTwSH7baNGZatL21hNh5QrQ3yM,18403
50
- azure/storage/blob/_shared/base_client_async.py,sha256=_qvSKs2NajFDCxJfIu9qKQTe4_kSFZOft4LrG59DhZg,7286
51
- azure/storage/blob/_shared/constants.py,sha256=0TnhBNEaZpVq0vECmLoXWSzCajtn9WOlfOfzbMApRb4,620
52
- azure/storage/blob/_shared/models.py,sha256=cBt-61Ifk2-GPdIb6Z4UdV2SNLahguQyFgPJAYPzmzA,21083
53
- azure/storage/blob/_shared/parser.py,sha256=0lDtA9jtfN4Skj41dAjOSX1FEKFeRwNmdnWqwh1NAMQ,1875
54
- azure/storage/blob/_shared/policies.py,sha256=BWHdSetLGgT3LsTLbXSGPzuNVDfIwWsitErfRh-lA60,29614
55
- azure/storage/blob/_shared/policies_async.py,sha256=rUaMJuKfrQiwUVuxvZB64UZ6eLUhlfO0PBIey9Zx1HE,11708
56
- azure/storage/blob/_shared/request_handlers.py,sha256=0G9eyzMY_8BlLfHA6jbJF75ENcu3xqZ33bHfSRi9HTM,9755
57
- azure/storage/blob/_shared/response_handlers.py,sha256=DxzytsUiD6P2lacJhFg0u4XTTpnOQfWCF0EmKCQ9H80,8814
58
- azure/storage/blob/_shared/shared_access_signature.py,sha256=5NlUOW0v-7pbRy3msNxom43219EmT-paDylC2-p5QGA,10675
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=vKcmSZE_dnKHTBP9gaANEsvw0mNmAAkUwmX8lCRsgxA,16212
63
- azure/storage/blob/_shared/avro/avro_io_async.py,sha256=SVGg6MObwkfclwcETpLAt_sN1L3ZqYzl7gPkGzau82Y,16353
64
- azure/storage/blob/_shared/avro/datafile.py,sha256=kW92_jqKSJBXLsDkW9nex9X_to1lHI3d9vYvC70bP1o,8535
65
- azure/storage/blob/_shared/avro/datafile_async.py,sha256=jbf50A1yzJCHZS1-eoKzQW5KdzJ9uQGhlOi8QoKuRb8,7368
66
- azure/storage/blob/_shared/avro/schema.py,sha256=QJDiJRsUpPi92a4Ph4JtCeB6pbigI8qsvIlTuSPci78,36285
67
- azure/storage/blob/aio/__init__.py,sha256=jLt4Iw2zIGyfyTXpN7SXfxDmxq-OhdEFF_YElWLDACQ,7922
68
- azure/storage/blob/aio/_blob_client_async.py,sha256=Wk1k_rdOM8BHB1TRprB_H2SaWOCwlkiCinhRvTPQHQI,166671
69
- azure/storage/blob/aio/_blob_service_client_async.py,sha256=zsvPWcIqRJF-fh8nlMVAVn09lHVKPVUbPMac2HMOutE,37941
70
- azure/storage/blob/aio/_container_client_async.py,sha256=Svu1uYoLcG6cAD5NQadJNfq3fRw2SpfbUUsGmmGcNxw,76882
71
- azure/storage/blob/aio/_download_async.py,sha256=F3vkyuMeBZ7fXZIbqsYCzzp9IhJ7xF1NLjJ8c0OlVaE,29366
72
- azure/storage/blob/aio/_lease_async.py,sha256=ZBNV868_FFEY2zyJ-gl_wVBxkXNh6PalRWR0PwzLXuQ,18437
73
- azure/storage/blob/aio/_list_blobs_helper.py,sha256=JXrgZb2R3JhNO4P58kzpruRF52nek4JmAixfyaQQNYA,11269
74
- azure/storage/blob/aio/_models.py,sha256=k9vJ9GNp1IKfcSBwL1kj8aXq3gm_RYgRtK7_yJm-MTU,7684
75
- azure/storage/blob/aio/_upload_helpers.py,sha256=K_srGMkhxm7wU8C309QHLRFoZXR6Qt6LS9v9T3pGMdQ,13135
76
- azure_storage_blob-12.19.0b1.dist-info/LICENSE,sha256=_VMkgdgo4ToLE8y1mOAjOKNhd0BnWoYu5r3BVBto6T0,1073
77
- azure_storage_blob-12.19.0b1.dist-info/METADATA,sha256=SIJY_MKGW26M3HO36mrWNE1Qad81ZoJNhJQFabk7VvE,26249
78
- azure_storage_blob-12.19.0b1.dist-info/WHEEL,sha256=yQN5g4mg4AybRjkgi-9yy4iQEFibGQmlz78Pik5Or-A,92
79
- azure_storage_blob-12.19.0b1.dist-info/top_level.txt,sha256=S7DhWV9m80TBzAhOFjxDUiNbKszzoThbnrSz5MpbHSQ,6
80
- azure_storage_blob-12.19.0b1.dist-info/RECORD,,