airbyte-source-azure-blob-storage 0.5.0__py3-none-any.whl → 0.6.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.
Potentially problematic release.
This version of airbyte-source-azure-blob-storage might be problematic. Click here for more details.
- {airbyte_source_azure_blob_storage-0.5.0.dist-info → airbyte_source_azure_blob_storage-0.6.0.dist-info}/METADATA +6 -8
- {airbyte_source_azure_blob_storage-0.5.0.dist-info → airbyte_source_azure_blob_storage-0.6.0.dist-info}/RECORD +5 -5
- {airbyte_source_azure_blob_storage-0.5.0.dist-info → airbyte_source_azure_blob_storage-0.6.0.dist-info}/WHEEL +1 -1
- source_azure_blob_storage/spec.py +1 -1
- {airbyte_source_azure_blob_storage-0.5.0.dist-info → airbyte_source_azure_blob_storage-0.6.0.dist-info}/entry_points.txt +0 -0
|
@@ -1,21 +1,19 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.3
|
|
2
2
|
Name: airbyte-source-azure-blob-storage
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.6.0
|
|
4
4
|
Summary: Source implementation for Azure Blob Storage.
|
|
5
|
-
Home-page: https://airbyte.com
|
|
6
5
|
License: MIT
|
|
7
6
|
Author: Airbyte
|
|
8
7
|
Author-email: contact@airbyte.io
|
|
9
|
-
Requires-Python: >=3.
|
|
8
|
+
Requires-Python: >=3.11,<3.12
|
|
10
9
|
Classifier: License :: OSI Approved :: MIT License
|
|
11
10
|
Classifier: Programming Language :: Python :: 3
|
|
12
|
-
Classifier: Programming Language :: Python :: 3.9
|
|
13
|
-
Classifier: Programming Language :: Python :: 3.10
|
|
14
11
|
Classifier: Programming Language :: Python :: 3.11
|
|
15
|
-
Requires-Dist: airbyte-cdk[file-based] (>=
|
|
16
|
-
Requires-Dist: pytz (
|
|
12
|
+
Requires-Dist: airbyte-cdk[file-based] (>=4,<5)
|
|
13
|
+
Requires-Dist: pytz (>=2024.1,<2025.0)
|
|
17
14
|
Requires-Dist: smart-open[azure] (==6.4.0)
|
|
18
15
|
Project-URL: Documentation, https://docs.airbyte.com/integrations/sources/azure-blob-storage
|
|
16
|
+
Project-URL: Homepage, https://airbyte.com
|
|
19
17
|
Project-URL: Repository, https://github.com/airbytehq/airbyte
|
|
20
18
|
Description-Content-Type: text/markdown
|
|
21
19
|
|
|
@@ -2,9 +2,9 @@ source_azure_blob_storage/__init__.py,sha256=Wx4PzvHg900-c2CpOOP1Wk0zcJpNVqJrkMn
|
|
|
2
2
|
source_azure_blob_storage/config_migrations.py,sha256=WKo5ETt4y09_cjfny3EH4filBsC48ltLMlQ_wLcxYVM,4229
|
|
3
3
|
source_azure_blob_storage/run.py,sha256=3rwgY4Qs-KdOKZanpiLmGsQzNW5gUEE9zmrizEpCs20,1999
|
|
4
4
|
source_azure_blob_storage/source.py,sha256=j5ibzjzX_gAi2kASpajoQ8ZMbnJ8LIwuSKChwk5i3vY,2420
|
|
5
|
-
source_azure_blob_storage/spec.py,sha256=
|
|
5
|
+
source_azure_blob_storage/spec.py,sha256=ysnDed3VwUmQnBhOYHHkWivUH3Q7EqDbjvT1Qqc7fPo,4697
|
|
6
6
|
source_azure_blob_storage/stream_reader.py,sha256=ZSMgiwy6dOsFAGPyDIwCS4SklNIRo7dKdwesWIrsCrQ,6674
|
|
7
|
-
airbyte_source_azure_blob_storage-0.
|
|
8
|
-
airbyte_source_azure_blob_storage-0.
|
|
9
|
-
airbyte_source_azure_blob_storage-0.
|
|
10
|
-
airbyte_source_azure_blob_storage-0.
|
|
7
|
+
airbyte_source_azure_blob_storage-0.6.0.dist-info/METADATA,sha256=qtPEbD1X9ntcSlC_VAR2Q4O0jnlYW05yCU14uf9qobE,6185
|
|
8
|
+
airbyte_source_azure_blob_storage-0.6.0.dist-info/WHEEL,sha256=fGIA9gx4Qxk2KDKeNJCbOEwSrmLtjWCwzBz351GyrPQ,88
|
|
9
|
+
airbyte_source_azure_blob_storage-0.6.0.dist-info/entry_points.txt,sha256=75v_DA_Xu0qr0eqtEXyh8sPCqcL9eXKWY8UwdST3ANE,79
|
|
10
|
+
airbyte_source_azure_blob_storage-0.6.0.dist-info/RECORD,,
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
from typing import Any, Dict, Literal, Optional, Union
|
|
7
7
|
|
|
8
8
|
import dpath.util
|
|
9
|
-
from pydantic import AnyUrl, BaseModel, Field
|
|
9
|
+
from pydantic.v1 import AnyUrl, BaseModel, Field
|
|
10
10
|
|
|
11
11
|
from airbyte_cdk import OneOfOptionConfig
|
|
12
12
|
from airbyte_cdk.sources.file_based.config.abstract_file_based_spec import AbstractFileBasedSpec
|