airbyte-cdk 6.45.10__py3-none-any.whl → 6.46.1__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.
- airbyte_cdk/cli/__init__.py +9 -1
- airbyte_cdk/cli/airbyte_cdk/__init__.py +86 -0
- airbyte_cdk/cli/airbyte_cdk/_connector.py +179 -0
- airbyte_cdk/cli/airbyte_cdk/_image.py +95 -0
- airbyte_cdk/cli/airbyte_cdk/_manifest.py +24 -0
- airbyte_cdk/cli/airbyte_cdk/_secrets.py +150 -0
- airbyte_cdk/cli/airbyte_cdk/_util.py +43 -0
- airbyte_cdk/cli/airbyte_cdk/_version.py +13 -0
- airbyte_cdk/connector_builder/connector_builder_handler.py +10 -0
- airbyte_cdk/models/connector_metadata.py +97 -0
- airbyte_cdk/sources/declarative/declarative_component_schema.yaml +108 -79
- airbyte_cdk/sources/declarative/manifest_declarative_source.py +122 -45
- airbyte_cdk/sources/declarative/models/declarative_component_schema.py +87 -82
- airbyte_cdk/sources/declarative/parsers/custom_exceptions.py +9 -0
- airbyte_cdk/sources/declarative/parsers/manifest_component_transformer.py +2 -2
- airbyte_cdk/sources/declarative/parsers/manifest_normalizer.py +462 -0
- airbyte_cdk/sources/declarative/parsers/manifest_reference_resolver.py +2 -2
- airbyte_cdk/sources/declarative/parsers/model_to_component_factory.py +24 -24
- airbyte_cdk/sources/declarative/stream_slicers/declarative_partition_generator.py +17 -1
- airbyte_cdk/test/standard_tests/connector_base.py +51 -25
- airbyte_cdk/test/standard_tests/declarative_sources.py +3 -1
- airbyte_cdk/test/standard_tests/test_resources.py +69 -0
- airbyte_cdk/test/standard_tests/util.py +79 -0
- airbyte_cdk/utils/docker.py +337 -0
- airbyte_cdk/utils/docker_image_templates.py +101 -0
- {airbyte_cdk-6.45.10.dist-info → airbyte_cdk-6.46.1.dist-info}/METADATA +6 -1
- {airbyte_cdk-6.45.10.dist-info → airbyte_cdk-6.46.1.dist-info}/RECORD +31 -18
- {airbyte_cdk-6.45.10.dist-info → airbyte_cdk-6.46.1.dist-info}/entry_points.txt +1 -0
- {airbyte_cdk-6.45.10.dist-info → airbyte_cdk-6.46.1.dist-info}/LICENSE.txt +0 -0
- {airbyte_cdk-6.45.10.dist-info → airbyte_cdk-6.46.1.dist-info}/LICENSE_SHORT +0 -0
- {airbyte_cdk-6.45.10.dist-info → airbyte_cdk-6.46.1.dist-info}/WHEEL +0 -0
@@ -0,0 +1,101 @@
|
|
1
|
+
# Copyright (c) 2025 Airbyte, Inc., all rights reserved.
|
2
|
+
"""A collection of Dockerfile templates for building Airbyte connectors.
|
3
|
+
|
4
|
+
The templates are designed to be used with the Airbyte CDK and can be customized
|
5
|
+
for different connectors and architectures.
|
6
|
+
|
7
|
+
These templates are used to generate connector images.
|
8
|
+
"""
|
9
|
+
|
10
|
+
##############################
|
11
|
+
## GLOBAL DOCKERIGNORE FILE ##
|
12
|
+
##############################
|
13
|
+
|
14
|
+
DOCKERIGNORE_TEMPLATE: str = "\n".join(
|
15
|
+
[
|
16
|
+
"# This file is auto-generated. Do not edit.",
|
17
|
+
# "*,"
|
18
|
+
"build/",
|
19
|
+
".venv/",
|
20
|
+
"secrets/",
|
21
|
+
"!setup.py",
|
22
|
+
"!pyproject.toml",
|
23
|
+
"!poetry.lock",
|
24
|
+
"!poetry.toml",
|
25
|
+
"!components.py",
|
26
|
+
"!requirements.txt",
|
27
|
+
"!README.md",
|
28
|
+
"!metadata.yaml",
|
29
|
+
"!build_customization.py",
|
30
|
+
"!source_*",
|
31
|
+
"!destination_*",
|
32
|
+
]
|
33
|
+
)
|
34
|
+
|
35
|
+
###########################
|
36
|
+
# PYTHON CONNECTOR IMAGE ##
|
37
|
+
###########################
|
38
|
+
|
39
|
+
PYTHON_CONNECTOR_DOCKERFILE_TEMPLATE = """
|
40
|
+
# syntax=docker/dockerfile:1
|
41
|
+
# check=skip=all
|
42
|
+
ARG BASE_IMAGE
|
43
|
+
|
44
|
+
FROM ${BASE_IMAGE} AS builder
|
45
|
+
ARG BASE_IMAGE
|
46
|
+
ARG CONNECTOR_SNAKE_NAME
|
47
|
+
ARG CONNECTOR_KEBAB_NAME
|
48
|
+
ARG EXTRA_PREREQS_SCRIPT=""
|
49
|
+
|
50
|
+
WORKDIR /airbyte/integration_code
|
51
|
+
|
52
|
+
COPY . ./
|
53
|
+
|
54
|
+
# Conditionally copy and execute the extra build script if provided
|
55
|
+
RUN if [ -n "${EXTRA_PREREQS_SCRIPT}" ]; then \
|
56
|
+
cp ${EXTRA_PREREQS_SCRIPT} ./extra_prereqs_script && \
|
57
|
+
./extra_prereqs_script; \
|
58
|
+
fi
|
59
|
+
|
60
|
+
# TODO: Pre-install uv on the base image to speed up the build.
|
61
|
+
# (uv is still faster even with the extra step.)
|
62
|
+
RUN pip install --no-cache-dir uv
|
63
|
+
RUN python -m uv pip install --no-cache-dir .
|
64
|
+
|
65
|
+
FROM ${BASE_IMAGE}
|
66
|
+
ARG CONNECTOR_SNAKE_NAME
|
67
|
+
ARG CONNECTOR_KEBAB_NAME
|
68
|
+
ARG BASE_IMAGE
|
69
|
+
|
70
|
+
WORKDIR /airbyte/integration_code
|
71
|
+
|
72
|
+
COPY --from=builder /usr/local /usr/local
|
73
|
+
COPY --chmod=755 <<EOT /entrypoint.sh
|
74
|
+
#!/usr/bin/env bash
|
75
|
+
set -e
|
76
|
+
|
77
|
+
${CONNECTOR_KEBAB_NAME} "\$\@"
|
78
|
+
EOT
|
79
|
+
|
80
|
+
ENV AIRBYTE_ENTRYPOINT="/entrypoint.sh"
|
81
|
+
ENTRYPOINT ["/entrypoint.sh"]
|
82
|
+
"""
|
83
|
+
|
84
|
+
##################################
|
85
|
+
# MANIFEST-ONLY CONNECTOR IMAGE ##
|
86
|
+
##################################
|
87
|
+
|
88
|
+
MANIFEST_ONLY_DOCKERFILE_TEMPLATE = """
|
89
|
+
ARG BASE_IMAGE
|
90
|
+
ARG CONNECTOR_SNAKE_NAME
|
91
|
+
ARG CONNECTOR_KEBAB_NAME
|
92
|
+
|
93
|
+
FROM ${BASE_IMAGE}
|
94
|
+
|
95
|
+
WORKDIR /airbyte/integration_code
|
96
|
+
|
97
|
+
COPY . ./
|
98
|
+
|
99
|
+
ENV AIRBYTE_ENTRYPOINT="python ./main.py"
|
100
|
+
ENTRYPOINT ["python", "./main.py"]
|
101
|
+
"""
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: airbyte-cdk
|
3
|
-
Version: 6.
|
3
|
+
Version: 6.46.1
|
4
4
|
Summary: A framework for writing Airbyte Connectors.
|
5
5
|
Home-page: https://airbyte.com
|
6
6
|
License: MIT
|
@@ -17,6 +17,7 @@ Classifier: Programming Language :: Python :: 3.11
|
|
17
17
|
Classifier: Programming Language :: Python :: 3.12
|
18
18
|
Classifier: Topic :: Scientific/Engineering
|
19
19
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
20
|
+
Provides-Extra: dev
|
20
21
|
Provides-Extra: file-based
|
21
22
|
Provides-Extra: sql
|
22
23
|
Provides-Extra: vector-db-based
|
@@ -28,12 +29,14 @@ Requires-Dist: avro (>=1.11.2,<1.13.0) ; extra == "file-based"
|
|
28
29
|
Requires-Dist: backoff
|
29
30
|
Requires-Dist: boltons (>=25.0.0,<26.0.0)
|
30
31
|
Requires-Dist: cachetools
|
32
|
+
Requires-Dist: click (>=8.1.8,<9.0.0)
|
31
33
|
Requires-Dist: cohere (==4.21) ; extra == "vector-db-based"
|
32
34
|
Requires-Dist: cryptography (>=44.0.0,<45.0.0)
|
33
35
|
Requires-Dist: dpath (>=2.1.6,<3.0.0)
|
34
36
|
Requires-Dist: dunamai (>=1.22.0,<2.0.0)
|
35
37
|
Requires-Dist: fastavro (>=1.8.0,<1.9.0) ; extra == "file-based"
|
36
38
|
Requires-Dist: genson (==1.3.0)
|
39
|
+
Requires-Dist: google-cloud-secret-manager (>=2.17.0,<3.0.0)
|
37
40
|
Requires-Dist: isodate (>=0.6.1,<0.7.0)
|
38
41
|
Requires-Dist: jsonref (>=0.2,<0.3)
|
39
42
|
Requires-Dist: jsonschema (>=4.17.3,<4.18.0)
|
@@ -54,6 +57,7 @@ Requires-Dist: pydantic (>=2.7,<3.0)
|
|
54
57
|
Requires-Dist: pyjwt (>=2.8.0,<3.0.0)
|
55
58
|
Requires-Dist: pyrate-limiter (>=3.1.0,<3.2.0)
|
56
59
|
Requires-Dist: pytesseract (==0.3.10) ; extra == "file-based"
|
60
|
+
Requires-Dist: pytest (>=7,<8) ; extra == "dev"
|
57
61
|
Requires-Dist: python-calamine (==0.2.3) ; extra == "file-based"
|
58
62
|
Requires-Dist: python-dateutil (>=2.9.0,<3.0.0)
|
59
63
|
Requires-Dist: python-snappy (==0.7.3) ; extra == "file-based"
|
@@ -62,6 +66,7 @@ Requires-Dist: pytz (==2024.2)
|
|
62
66
|
Requires-Dist: rapidfuzz (>=3.10.1,<4.0.0)
|
63
67
|
Requires-Dist: requests
|
64
68
|
Requires-Dist: requests_cache
|
69
|
+
Requires-Dist: rich-click (>=1.8.8,<2.0.0)
|
65
70
|
Requires-Dist: serpyco-rs (>=1.10.2,<2.0.0)
|
66
71
|
Requires-Dist: sqlalchemy (>=2.0,<3.0,!=2.0.36) ; extra == "sql"
|
67
72
|
Requires-Dist: tiktoken (==0.8.0) ; extra == "vector-db-based"
|
@@ -1,5 +1,12 @@
|
|
1
1
|
airbyte_cdk/__init__.py,sha256=52uncJvDQNHvwKxaqzXgnMYTptIl65LDJr2fvlk8-DU,11707
|
2
|
-
airbyte_cdk/cli/__init__.py,sha256=
|
2
|
+
airbyte_cdk/cli/__init__.py,sha256=CXsai3MYMLZ_sqi2vPAIVcKDun8VRqlv0cKffBI0iSY,346
|
3
|
+
airbyte_cdk/cli/airbyte_cdk/__init__.py,sha256=8IoEcbdYr7CMAh97Xut5__uHH9vV4LKUtSBNTk3qEWY,2031
|
4
|
+
airbyte_cdk/cli/airbyte_cdk/_connector.py,sha256=bz6PGAuer17mSTkbCw10rTllOEjG_gw3U2lsvXAcPQE,5337
|
5
|
+
airbyte_cdk/cli/airbyte_cdk/_image.py,sha256=F0XtvR2CyFi1EPIUBiEnDia9NfCuM7T_itdNj9yyb2E,2907
|
6
|
+
airbyte_cdk/cli/airbyte_cdk/_manifest.py,sha256=aFdeeWgek7oXR3YfZPxk7kBZ64Blmsr0dAXN6BVGiIA,482
|
7
|
+
airbyte_cdk/cli/airbyte_cdk/_secrets.py,sha256=AOHrMwEeKeEq9icDTu5Zrhw7CzC1lvoxFk1cA0aW3-M,5221
|
8
|
+
airbyte_cdk/cli/airbyte_cdk/_util.py,sha256=kEvq7OkjDjn7G25gk15xTaMRp6gAWzD68e0PkZBADoY,1714
|
9
|
+
airbyte_cdk/cli/airbyte_cdk/_version.py,sha256=ohZNIktLFk91sdzqFW5idaNrZAPX2dIRnz---_fcKOE,352
|
3
10
|
airbyte_cdk/cli/source_declarative_manifest/__init__.py,sha256=-0ST722Nj65bgRokzpzPkD1NBBW5CytEHFUe38cB86Q,91
|
4
11
|
airbyte_cdk/cli/source_declarative_manifest/_run.py,sha256=9qtbjt-I_stGWzWX6yVUKO_eE-Ga7g-uTuibML9qLBs,8330
|
5
12
|
airbyte_cdk/cli/source_declarative_manifest/spec.json,sha256=Earc1L6ngcdIr514oFQlUoOxdF4RHqtUyStSIAquXdY,554
|
@@ -7,7 +14,7 @@ airbyte_cdk/config_observation.py,sha256=7SSPxtN0nXPkm4euGNcTTr1iLbwUL01jy-24V1H
|
|
7
14
|
airbyte_cdk/connector.py,sha256=bO23kdGRkl8XKFytOgrrWFc_VagteTHVEF6IsbizVkM,4224
|
8
15
|
airbyte_cdk/connector_builder/README.md,sha256=Hw3wvVewuHG9-QgsAq1jDiKuLlStDxKBz52ftyNRnBw,1665
|
9
16
|
airbyte_cdk/connector_builder/__init__.py,sha256=4Hw-PX1-VgESLF16cDdvuYCzGJtHntThLF4qIiULWeo,61
|
10
|
-
airbyte_cdk/connector_builder/connector_builder_handler.py,sha256=
|
17
|
+
airbyte_cdk/connector_builder/connector_builder_handler.py,sha256=bJ7ufXOWLXN4i8QQ6WhAsnQY2AqlZq0NVL5G-TAPa1g,6241
|
11
18
|
airbyte_cdk/connector_builder/main.py,sha256=j1pP5N8RsnvQZ4iYxhLdLEHsJ5Ui7IVFBUi6wYMGBkM,3839
|
12
19
|
airbyte_cdk/connector_builder/models.py,sha256=9pIZ98LW_d6fRS39VdnUOf3cxGt4TkC5MJ0_OrzcCRk,1578
|
13
20
|
airbyte_cdk/connector_builder/test_reader/__init__.py,sha256=iTwBMoI9vaJotEgpqZbFjlxRcbxXYypSVJ9YxeHk7wc,120
|
@@ -32,6 +39,7 @@ airbyte_cdk/logger.py,sha256=1cURbvawbunCAV178q-XhTHcbAQZTSf07WhU7U9AXWU,3744
|
|
32
39
|
airbyte_cdk/models/__init__.py,sha256=Et9wJWs5VOWynGbb-3aJRhsdAHAiLkNNLxdwqJAuqkw,2114
|
33
40
|
airbyte_cdk/models/airbyte_protocol.py,sha256=oZdKsZ7yPjUt9hvxdWNpxCtgjSV2RWhf4R9Np03sqyY,3613
|
34
41
|
airbyte_cdk/models/airbyte_protocol_serializers.py,sha256=s6SaFB2CMrG_7jTQGn_fhFbQ1FUxhCxf5kq2RWGHMVI,1749
|
42
|
+
airbyte_cdk/models/connector_metadata.py,sha256=Lwb0JKiWvnqHduXjHHgBBBhTsGoLiNjxbG93W_OjcKQ,2875
|
35
43
|
airbyte_cdk/models/well_known_types.py,sha256=EquepbisGPuCSrs_D7YVVnMR9-ShhUr21wnFz3COiJs,156
|
36
44
|
airbyte_cdk/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
37
45
|
airbyte_cdk/sources/__init__.py,sha256=45J83QsFH3Wky3sVapZWg4C58R_i1thm61M06t2c1AQ,1156
|
@@ -70,7 +78,7 @@ airbyte_cdk/sources/declarative/concurrent_declarative_source.py,sha256=mB0wBAuA
|
|
70
78
|
airbyte_cdk/sources/declarative/datetime/__init__.py,sha256=4Hw-PX1-VgESLF16cDdvuYCzGJtHntThLF4qIiULWeo,61
|
71
79
|
airbyte_cdk/sources/declarative/datetime/datetime_parser.py,sha256=_zGNGq31RNy_0QBLt_EcTvgPyhj7urPdx6oA3M5-r3o,3150
|
72
80
|
airbyte_cdk/sources/declarative/datetime/min_max_datetime.py,sha256=0BHBtDNQZfvwM45-tY5pNlTcKAFSGGNxemoi0Jic-0E,5785
|
73
|
-
airbyte_cdk/sources/declarative/declarative_component_schema.yaml,sha256=
|
81
|
+
airbyte_cdk/sources/declarative/declarative_component_schema.yaml,sha256=_I1EGLpctW6PRAQVhtxvUuwXCxbYcl2IfxiJyN_MXFA,161909
|
74
82
|
airbyte_cdk/sources/declarative/declarative_source.py,sha256=nF7wBqFd3AQmEKAm4CnIo29CJoQL562cJGSCeL8U8bA,1531
|
75
83
|
airbyte_cdk/sources/declarative/declarative_stream.py,sha256=dCRlddBUSaJmBNBz1pSO1r2rTw8AP5d2_vlmIeGs2gg,10767
|
76
84
|
airbyte_cdk/sources/declarative/decoders/__init__.py,sha256=JHb_0d3SE6kNY10mxA5YBEKPeSbsWYjByq1gUQxepoE,953
|
@@ -108,18 +116,19 @@ airbyte_cdk/sources/declarative/interpolation/interpolated_string.py,sha256=CQkH
|
|
108
116
|
airbyte_cdk/sources/declarative/interpolation/interpolation.py,sha256=9IoeuWam3L6GyN10L6U8xNWXmkt9cnahSDNkez1OmFY,982
|
109
117
|
airbyte_cdk/sources/declarative/interpolation/jinja.py,sha256=UQeuS4Vpyp4hlOn-R3tRyeBX0e9IoV6jQ6gH-Jz8lY0,7182
|
110
118
|
airbyte_cdk/sources/declarative/interpolation/macros.py,sha256=UYSJ5gW7TkHALYnNvUnRP3RlyGwGuRMObF3BHuNzjJM,5320
|
111
|
-
airbyte_cdk/sources/declarative/manifest_declarative_source.py,sha256=
|
119
|
+
airbyte_cdk/sources/declarative/manifest_declarative_source.py,sha256=trTSVPJVAs6RN2sMeaLSuQT3jzJk8ZbdkUP6DMU29Ow,22011
|
112
120
|
airbyte_cdk/sources/declarative/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
113
121
|
airbyte_cdk/sources/declarative/migrations/legacy_to_per_partition_state_migration.py,sha256=iemy3fKLczcU0-Aor7tx5jcT6DRedKMqyK7kCOp01hg,3924
|
114
122
|
airbyte_cdk/sources/declarative/migrations/state_migration.py,sha256=KWPjealMLKSMtajXgkdGgKg7EmTLR-CqqD7UIh0-eDU,794
|
115
123
|
airbyte_cdk/sources/declarative/models/__init__.py,sha256=nUFxNCiKeYRVXuZEKA7GD-lTHxsiKcQ8FitZjKhPIvE,100
|
116
|
-
airbyte_cdk/sources/declarative/models/declarative_component_schema.py,sha256=
|
124
|
+
airbyte_cdk/sources/declarative/models/declarative_component_schema.py,sha256=KX9eu7hpkfZHPc8PgzuTLq61Qe_SQ9ZwqCU_Q5Ay698,114532
|
117
125
|
airbyte_cdk/sources/declarative/parsers/__init__.py,sha256=ZnqYNxHsKCgO38IwB34RQyRMXTs4GTvlRi3ImKnIioo,61
|
118
126
|
airbyte_cdk/sources/declarative/parsers/custom_code_compiler.py,sha256=nlVvHC511NUyDEEIRBkoeDTAvLqKNp-hRy8D19z8tdk,5941
|
119
|
-
airbyte_cdk/sources/declarative/parsers/custom_exceptions.py,sha256=
|
120
|
-
airbyte_cdk/sources/declarative/parsers/manifest_component_transformer.py,sha256=
|
121
|
-
airbyte_cdk/sources/declarative/parsers/
|
122
|
-
airbyte_cdk/sources/declarative/parsers/
|
127
|
+
airbyte_cdk/sources/declarative/parsers/custom_exceptions.py,sha256=wnRUP0Xeru9Rbu5OexXSDN9QWDo8YU4tT9M2LDVOgGA,802
|
128
|
+
airbyte_cdk/sources/declarative/parsers/manifest_component_transformer.py,sha256=RUyFZS0zslLb7UfQrvqMC--k5CVLNSp7zHw6kbosvKE,9688
|
129
|
+
airbyte_cdk/sources/declarative/parsers/manifest_normalizer.py,sha256=laBy7ebjA-PiNwc-50U4FHvMqS_mmHvnabxgFs4CjGw,17069
|
130
|
+
airbyte_cdk/sources/declarative/parsers/manifest_reference_resolver.py,sha256=pJmg78vqE5VfUrF_KJnWjucQ4k9IWFULeAxHCowrHXE,6806
|
131
|
+
airbyte_cdk/sources/declarative/parsers/model_to_component_factory.py,sha256=3sHQPrJrgIsk_D17g3vf61JfD4MEJDbniR1JqOyMb64,161761
|
123
132
|
airbyte_cdk/sources/declarative/partition_routers/__init__.py,sha256=TBC9AkGaUqHm2IKHMPN6punBIcY5tWGULowcLoAVkfw,1109
|
124
133
|
airbyte_cdk/sources/declarative/partition_routers/async_job_partition_router.py,sha256=VelO7zKqKtzMJ35jyFeg0ypJLQC0plqqIBNXoBW1G2E,3001
|
125
134
|
airbyte_cdk/sources/declarative/partition_routers/cartesian_product_stream_slicer.py,sha256=c5cuVFM6NFkuQqG8Z5IwkBuwDrvXZN1CunUOM_L0ezg,6892
|
@@ -190,7 +199,7 @@ airbyte_cdk/sources/declarative/schema/schema_loader.py,sha256=kjt8v0N5wWKA5zyLn
|
|
190
199
|
airbyte_cdk/sources/declarative/spec/__init__.py,sha256=H0UwoRhgucbKBIzg85AXrifybVmfpwWpPdy22vZKVuo,141
|
191
200
|
airbyte_cdk/sources/declarative/spec/spec.py,sha256=ODSNUgkDOhnLQnwLjgSaME6R3kNeywjROvbNrWEnsgU,1876
|
192
201
|
airbyte_cdk/sources/declarative/stream_slicers/__init__.py,sha256=sI9vhc95RwJYOnA0VKjcbtKgFcmAbWjhdWBXFbAijOs,176
|
193
|
-
airbyte_cdk/sources/declarative/stream_slicers/declarative_partition_generator.py,sha256=
|
202
|
+
airbyte_cdk/sources/declarative/stream_slicers/declarative_partition_generator.py,sha256=V_WXPrEzn3mlS_calo5GHUIkugGKcrDwHp06uaQLUMg,4247
|
194
203
|
airbyte_cdk/sources/declarative/stream_slicers/stream_slicer.py,sha256=SOkIPBi2Wu7yxIvA15yFzUAB95a3IzA8LPq5DEqHQQc,725
|
195
204
|
airbyte_cdk/sources/declarative/transformations/__init__.py,sha256=CPJ8TlMpiUmvG3624VYu_NfTzxwKcfBjM2Q2wJ7fkSA,919
|
196
205
|
airbyte_cdk/sources/declarative/transformations/add_fields.py,sha256=Eg1jQtRObgzxbtySTQs5uEZIjEklsoHFxYSPf78x6Ng,5420
|
@@ -347,13 +356,15 @@ airbyte_cdk/test/mock_http/response.py,sha256=s4-cQQqTtmeej0pQDWqmG0vUWpHS-93lIW
|
|
347
356
|
airbyte_cdk/test/mock_http/response_builder.py,sha256=F-v7ebftqGj7YVIMLKdodmU9U8Dq8aIyllWGo2NGwHc,8331
|
348
357
|
airbyte_cdk/test/standard_tests/__init__.py,sha256=YS2bghoGmQ-4GNIbe6RuEmvV-V1kpM1OyxTpebrs0Ig,1338
|
349
358
|
airbyte_cdk/test/standard_tests/_job_runner.py,sha256=d2JkwxJilYIJNmyVH946YMn8x1pnP3JaNT865V8vZzQ,5820
|
350
|
-
airbyte_cdk/test/standard_tests/connector_base.py,sha256=
|
351
|
-
airbyte_cdk/test/standard_tests/declarative_sources.py,sha256=
|
359
|
+
airbyte_cdk/test/standard_tests/connector_base.py,sha256=WXzlfv8b7AsfEssfTm7dOg3KH114qXqHN2SLdPAvYwE,6800
|
360
|
+
airbyte_cdk/test/standard_tests/declarative_sources.py,sha256=PQschGGdVgduPfkEYHwNPAz7kxbhKZYAoSmxryqJ5yc,3223
|
352
361
|
airbyte_cdk/test/standard_tests/destination_base.py,sha256=MARZip2mdo_PzGvzf2VBTAfrP4tbjrJYgeJUApnAArA,731
|
353
362
|
airbyte_cdk/test/standard_tests/models/__init__.py,sha256=bS25WlzQwPNxpU5DHtUDZo1DuXd0LkEv9qesNhY1jkY,135
|
354
363
|
airbyte_cdk/test/standard_tests/models/scenario.py,sha256=loOfIeKWbzhqyY3JiLU-sE7RKDAsvz3SLpI9APeTPiw,2378
|
355
364
|
airbyte_cdk/test/standard_tests/pytest_hooks.py,sha256=4OMy2jNQThS8y7Tyj8MiMy2-SWjoefD4lGo-zQmCUfU,1886
|
356
365
|
airbyte_cdk/test/standard_tests/source_base.py,sha256=B30Jduz5n7Z8oM3y9RF6B5upTZN3am6rFod6mqgIizo,5235
|
366
|
+
airbyte_cdk/test/standard_tests/test_resources.py,sha256=fYYMRa50L_kUqXwr_aj9FuHhfcVEf4WLGocoRT1bnZI,2448
|
367
|
+
airbyte_cdk/test/standard_tests/util.py,sha256=eeRP_WFEaIs4x-JnpQ7wWIA938zdDyDhvOeeAf0AnOs,2933
|
357
368
|
airbyte_cdk/test/state_builder.py,sha256=kLPql9lNzUJaBg5YYRLJlY_Hy5JLHJDVyKPMZMoYM44,946
|
358
369
|
airbyte_cdk/test/utils/__init__.py,sha256=Hu-1XT2KDoYjDF7-_ziDwv5bY3PueGjANOCbzeOegDg,57
|
359
370
|
airbyte_cdk/test/utils/data.py,sha256=CkCR1_-rujWNmPXFR1IXTMwx1rAl06wAyIKWpDcN02w,820
|
@@ -366,6 +377,8 @@ airbyte_cdk/utils/analytics_message.py,sha256=bi3uugQ2NjecnwTnz63iD5D1M8ZR8mXPbd
|
|
366
377
|
airbyte_cdk/utils/constants.py,sha256=QzCi7j5SqpI5I06uRvQ8FC73JVJi7rXaRnR3E_gro5c,108
|
367
378
|
airbyte_cdk/utils/datetime_format_inferrer.py,sha256=Ne2cpk7Tx3eZDEW2Q3O7jnNOY9g-w-AUMt3Ltvwg1tY,3989
|
368
379
|
airbyte_cdk/utils/datetime_helpers.py,sha256=8mqzZ67Or2PBp7tLtrhh6XFv4wFzYsjCL_DOQJRaftI,17751
|
380
|
+
airbyte_cdk/utils/docker.py,sha256=tLetbEzcC5xBPsFFcPrUzN3mNsutm0_8Vy7a6grFm60,10033
|
381
|
+
airbyte_cdk/utils/docker_image_templates.py,sha256=KCilUF-tab4aDJxsgWqywafMg5OUkixuXFsThuVi1VU,2352
|
369
382
|
airbyte_cdk/utils/event_timing.py,sha256=aiuFmPU80buLlNdKq4fDTEqqhEIelHPF6AalFGwY8as,2557
|
370
383
|
airbyte_cdk/utils/is_cloud_environment.py,sha256=DayV32Irh-SdnJ0MnjvstwCJ66_l5oEsd8l85rZtHoc,574
|
371
384
|
airbyte_cdk/utils/mapping_helpers.py,sha256=nWjOpnz_5QE9tY9-GtSWMPvYQL95kDD6k8KwwjUmrh0,6526
|
@@ -377,9 +390,9 @@ airbyte_cdk/utils/slice_hasher.py,sha256=EDxgROHDbfG-QKQb59m7h_7crN1tRiawdf5uU7G
|
|
377
390
|
airbyte_cdk/utils/spec_schema_transformations.py,sha256=-5HTuNsnDBAhj-oLeQXwpTGA0HdcjFOf2zTEMUTTg_Y,816
|
378
391
|
airbyte_cdk/utils/stream_status_utils.py,sha256=ZmBoiy5HVbUEHAMrUONxZvxnvfV9CesmQJLDTAIWnWw,1171
|
379
392
|
airbyte_cdk/utils/traced_exception.py,sha256=C8uIBuCL_E4WnBAOPSxBicD06JAldoN9fGsQDp463OY,6292
|
380
|
-
airbyte_cdk-6.
|
381
|
-
airbyte_cdk-6.
|
382
|
-
airbyte_cdk-6.
|
383
|
-
airbyte_cdk-6.
|
384
|
-
airbyte_cdk-6.
|
385
|
-
airbyte_cdk-6.
|
393
|
+
airbyte_cdk-6.46.1.dist-info/LICENSE.txt,sha256=Wfe61S4BaGPj404v8lrAbvhjYR68SHlkzeYrg3_bbuM,1051
|
394
|
+
airbyte_cdk-6.46.1.dist-info/LICENSE_SHORT,sha256=aqF6D1NcESmpn-cqsxBtszTEnHKnlsp8L4x9wAh3Nxg,55
|
395
|
+
airbyte_cdk-6.46.1.dist-info/METADATA,sha256=7LlsiUvkE6tU3sQz44kb011La3QmPw8wYWSfcuSeqSc,6323
|
396
|
+
airbyte_cdk-6.46.1.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
|
397
|
+
airbyte_cdk-6.46.1.dist-info/entry_points.txt,sha256=AKWbEkHfpzzk9nF9tqBUaw1MbvTM4mGtEzmZQm0ZWvM,139
|
398
|
+
airbyte_cdk-6.46.1.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|