airbyte-source-azure-blob-storage 0.3.5__py3-none-any.whl → 0.3.6__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.

Potentially problematic release.


This version of airbyte-source-azure-blob-storage might be problematic. Click here for more details.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: airbyte-source-azure-blob-storage
3
- Version: 0.3.5
3
+ Version: 0.3.6
4
4
  Summary: Source implementation for Azure Blob Storage.
5
5
  Home-page: https://airbyte.com
6
6
  License: MIT
@@ -12,7 +12,7 @@ Classifier: Programming Language :: Python :: 3
12
12
  Classifier: Programming Language :: Python :: 3.9
13
13
  Classifier: Programming Language :: Python :: 3.10
14
14
  Classifier: Programming Language :: Python :: 3.11
15
- Requires-Dist: airbyte-cdk[file-based] (==0.75)
15
+ Requires-Dist: airbyte-cdk[file-based] (>=0,<1)
16
16
  Requires-Dist: pytz (==2024.1)
17
17
  Requires-Dist: smart-open[azure] (==6.4.0)
18
18
  Project-URL: Documentation, https://docs.airbyte.com/integrations/sources/azure-blob-storage
@@ -3,8 +3,8 @@ source_azure_blob_storage/config.py,sha256=fg1fitDbsX-LXtPGBmG3bfu-jb0XoFYqHxGWs
3
3
  source_azure_blob_storage/legacy_config_transformer.py,sha256=yiS4GgjaVvJtedmweAkq-eEdPG0RWWAAr0T9UV4RmOQ,1306
4
4
  source_azure_blob_storage/run.py,sha256=xam3N4LxPECFb0HTpJKIrmr8R_bVJmKiqEN4sluK4yk,1758
5
5
  source_azure_blob_storage/source.py,sha256=dt6BmjpDsxjeSlm6BccfFD3NJblEmDk4gUiJnvjcU40,1186
6
- source_azure_blob_storage/stream_reader.py,sha256=HA9jNcsMKK-5TVlVelpV2JmjxSf0OfqxC0yBEUtdEe0,2940
7
- airbyte_source_azure_blob_storage-0.3.5.dist-info/METADATA,sha256=aobYZFqV7OVJs68wTuObNEYRPEd7zJ_NDElXom1-aY0,5536
8
- airbyte_source_azure_blob_storage-0.3.5.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
9
- airbyte_source_azure_blob_storage-0.3.5.dist-info/entry_points.txt,sha256=75v_DA_Xu0qr0eqtEXyh8sPCqcL9eXKWY8UwdST3ANE,79
10
- airbyte_source_azure_blob_storage-0.3.5.dist-info/RECORD,,
6
+ source_azure_blob_storage/stream_reader.py,sha256=ERRHpikteRfOLSjnGrC--LefYAP60WCVZfcDW75x12o,2902
7
+ airbyte_source_azure_blob_storage-0.3.6.dist-info/METADATA,sha256=AzIFP5tX4FkUNoPmbUbz5lFMm-GnN69Q2ygG2N4rM0k,5536
8
+ airbyte_source_azure_blob_storage-0.3.6.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
9
+ airbyte_source_azure_blob_storage-0.3.6.dist-info/entry_points.txt,sha256=75v_DA_Xu0qr0eqtEXyh8sPCqcL9eXKWY8UwdST3ANE,79
10
+ airbyte_source_azure_blob_storage-0.3.6.dist-info/RECORD,,
@@ -1,7 +1,6 @@
1
1
  # Copyright (c) 2023 Airbyte, Inc., all rights reserved.
2
2
 
3
3
  import logging
4
- from contextlib import contextmanager
5
4
  from io import IOBase
6
5
  from typing import Iterable, List, Optional
7
6