Skip to content

Commit de09ae8

Browse files
author
octavia-squidington-iii
committed
Auto-fix lint and format issues
1 parent d1d5107 commit de09ae8

File tree

5 files changed

+73
-68
lines changed

5 files changed

+73
-68
lines changed

airbyte_cdk/sources/declarative/concurrent_declarative_source.py

+11-5
Original file line numberDiff line numberDiff line change
@@ -209,11 +209,17 @@ def _group_streams(
209209

210210
file_uploader = None
211211
if isinstance(declarative_stream, DeclarativeStream):
212-
file_uploader = self._constructor.create_component(
213-
model_type=FileUploader,
214-
component_definition=name_to_stream_mapping[declarative_stream.name]["file_uploader"],
215-
config=config,
216-
) if "file_uploader" in name_to_stream_mapping[declarative_stream.name] else None
212+
file_uploader = (
213+
self._constructor.create_component(
214+
model_type=FileUploader,
215+
component_definition=name_to_stream_mapping[declarative_stream.name][
216+
"file_uploader"
217+
],
218+
config=config,
219+
)
220+
if "file_uploader" in name_to_stream_mapping[declarative_stream.name]
221+
else None
222+
)
217223

218224
if (
219225
isinstance(declarative_stream, DeclarativeStream)

airbyte_cdk/sources/declarative/models/declarative_component_schema.py

+29-55
Original file line numberDiff line numberDiff line change
@@ -609,9 +609,7 @@ class OAuthAuthenticator(BaseModel):
609609
scopes: Optional[List[str]] = Field(
610610
None,
611611
description="List of scopes that should be granted to the access token.",
612-
examples=[
613-
["crm.list.read", "crm.objects.contacts.read", "crm.schema.contacts.read"]
614-
],
612+
examples=[["crm.list.read", "crm.objects.contacts.read", "crm.schema.contacts.read"]],
615613
title="Scopes",
616614
)
617615
token_expiry_date: Optional[str] = Field(
@@ -1085,28 +1083,24 @@ class OAuthConfigSpecification(BaseModel):
10851083
class Config:
10861084
extra = Extra.allow
10871085

1088-
oauth_user_input_from_connector_config_specification: Optional[Dict[str, Any]] = (
1089-
Field(
1090-
None,
1091-
description="OAuth specific blob. This is a Json Schema used to validate Json configurations used as input to OAuth.\nMust be a valid non-nested JSON that refers to properties from ConnectorSpecification.connectionSpecification\nusing special annotation 'path_in_connector_config'.\nThese are input values the user is entering through the UI to authenticate to the connector, that might also shared\nas inputs for syncing data via the connector.\nExamples:\nif no connector values is shared during oauth flow, oauth_user_input_from_connector_config_specification=[]\nif connector values such as 'app_id' inside the top level are used to generate the API url for the oauth flow,\n oauth_user_input_from_connector_config_specification={\n app_id: {\n type: string\n path_in_connector_config: ['app_id']\n }\n }\nif connector values such as 'info.app_id' nested inside another object are used to generate the API url for the oauth flow,\n oauth_user_input_from_connector_config_specification={\n app_id: {\n type: string\n path_in_connector_config: ['info', 'app_id']\n }\n }",
1092-
examples=[
1093-
{"app_id": {"type": "string", "path_in_connector_config": ["app_id"]}},
1094-
{
1095-
"app_id": {
1096-
"type": "string",
1097-
"path_in_connector_config": ["info", "app_id"],
1098-
}
1099-
},
1100-
],
1101-
title="OAuth user input",
1102-
)
1086+
oauth_user_input_from_connector_config_specification: Optional[Dict[str, Any]] = Field(
1087+
None,
1088+
description="OAuth specific blob. This is a Json Schema used to validate Json configurations used as input to OAuth.\nMust be a valid non-nested JSON that refers to properties from ConnectorSpecification.connectionSpecification\nusing special annotation 'path_in_connector_config'.\nThese are input values the user is entering through the UI to authenticate to the connector, that might also shared\nas inputs for syncing data via the connector.\nExamples:\nif no connector values is shared during oauth flow, oauth_user_input_from_connector_config_specification=[]\nif connector values such as 'app_id' inside the top level are used to generate the API url for the oauth flow,\n oauth_user_input_from_connector_config_specification={\n app_id: {\n type: string\n path_in_connector_config: ['app_id']\n }\n }\nif connector values such as 'info.app_id' nested inside another object are used to generate the API url for the oauth flow,\n oauth_user_input_from_connector_config_specification={\n app_id: {\n type: string\n path_in_connector_config: ['info', 'app_id']\n }\n }",
1089+
examples=[
1090+
{"app_id": {"type": "string", "path_in_connector_config": ["app_id"]}},
1091+
{
1092+
"app_id": {
1093+
"type": "string",
1094+
"path_in_connector_config": ["info", "app_id"],
1095+
}
1096+
},
1097+
],
1098+
title="OAuth user input",
11031099
)
1104-
oauth_connector_input_specification: Optional[OauthConnectorInputSpecification] = (
1105-
Field(
1106-
None,
1107-
description='The DeclarativeOAuth specific blob.\nPertains to the fields defined by the connector relating to the OAuth flow.\n\nInterpolation capabilities:\n- The variables placeholders are declared as `{{my_var}}`.\n- The nested resolution variables like `{{ {{my_nested_var}} }}` is allowed as well.\n\n- The allowed interpolation context is:\n + base64Encoder - encode to `base64`, {{ {{my_var_a}}:{{my_var_b}} | base64Encoder }}\n + base64Decorer - decode from `base64` encoded string, {{ {{my_string_variable_or_string_value}} | base64Decoder }}\n + urlEncoder - encode the input string to URL-like format, {{ https://test.host.com/endpoint | urlEncoder}}\n + urlDecorer - decode the input url-encoded string into text format, {{ urlDecoder:https%3A%2F%2Fairbyte.io | urlDecoder}}\n + codeChallengeS256 - get the `codeChallenge` encoded value to provide additional data-provider specific authorisation values, {{ {{state_value}} | codeChallengeS256 }}\n\nExamples:\n - The TikTok Marketing DeclarativeOAuth spec:\n {\n "oauth_connector_input_specification": {\n "type": "object",\n "additionalProperties": false,\n "properties": {\n "consent_url": "https://ads.tiktok.com/marketing_api/auth?{{client_id_key}}={{client_id_value}}&{{redirect_uri_key}}={{ {{redirect_uri_value}} | urlEncoder}}&{{state_key}}={{state_value}}",\n "access_token_url": "https://business-api.tiktok.com/open_api/v1.3/oauth2/access_token/",\n "access_token_params": {\n "{{ auth_code_key }}": "{{ auth_code_value }}",\n "{{ client_id_key }}": "{{ client_id_value }}",\n "{{ client_secret_key }}": "{{ client_secret_value }}"\n },\n "access_token_headers": {\n "Content-Type": "application/json",\n "Accept": "application/json"\n },\n "extract_output": ["data.access_token"],\n "client_id_key": "app_id",\n "client_secret_key": "secret",\n "auth_code_key": "auth_code"\n }\n }\n }',
1108-
title="DeclarativeOAuth Connector Specification",
1109-
)
1100+
oauth_connector_input_specification: Optional[OauthConnectorInputSpecification] = Field(
1101+
None,
1102+
description='The DeclarativeOAuth specific blob.\nPertains to the fields defined by the connector relating to the OAuth flow.\n\nInterpolation capabilities:\n- The variables placeholders are declared as `{{my_var}}`.\n- The nested resolution variables like `{{ {{my_nested_var}} }}` is allowed as well.\n\n- The allowed interpolation context is:\n + base64Encoder - encode to `base64`, {{ {{my_var_a}}:{{my_var_b}} | base64Encoder }}\n + base64Decorer - decode from `base64` encoded string, {{ {{my_string_variable_or_string_value}} | base64Decoder }}\n + urlEncoder - encode the input string to URL-like format, {{ https://test.host.com/endpoint | urlEncoder}}\n + urlDecorer - decode the input url-encoded string into text format, {{ urlDecoder:https%3A%2F%2Fairbyte.io | urlDecoder}}\n + codeChallengeS256 - get the `codeChallenge` encoded value to provide additional data-provider specific authorisation values, {{ {{state_value}} | codeChallengeS256 }}\n\nExamples:\n - The TikTok Marketing DeclarativeOAuth spec:\n {\n "oauth_connector_input_specification": {\n "type": "object",\n "additionalProperties": false,\n "properties": {\n "consent_url": "https://ads.tiktok.com/marketing_api/auth?{{client_id_key}}={{client_id_value}}&{{redirect_uri_key}}={{ {{redirect_uri_value}} | urlEncoder}}&{{state_key}}={{state_value}}",\n "access_token_url": "https://business-api.tiktok.com/open_api/v1.3/oauth2/access_token/",\n "access_token_params": {\n "{{ auth_code_key }}": "{{ auth_code_value }}",\n "{{ client_id_key }}": "{{ client_id_value }}",\n "{{ client_secret_key }}": "{{ client_secret_value }}"\n },\n "access_token_headers": {\n "Content-Type": "application/json",\n "Accept": "application/json"\n },\n "extract_output": ["data.access_token"],\n "client_id_key": "app_id",\n "client_secret_key": "secret",\n "auth_code_key": "auth_code"\n }\n }\n }',
1103+
title="DeclarativeOAuth Connector Specification",
11101104
)
11111105
complete_oauth_output_specification: Optional[Dict[str, Any]] = Field(
11121106
None,
@@ -1124,9 +1118,7 @@ class Config:
11241118
complete_oauth_server_input_specification: Optional[Dict[str, Any]] = Field(
11251119
None,
11261120
description="OAuth specific blob. This is a Json Schema used to validate Json configurations persisted as Airbyte Server configurations.\nMust be a valid non-nested JSON describing additional fields configured by the Airbyte Instance or Workspace Admins to be used by the\nserver when completing an OAuth flow (typically exchanging an auth code for refresh token).\nExamples:\n complete_oauth_server_input_specification={\n client_id: {\n type: string\n },\n client_secret: {\n type: string\n }\n }",
1127-
examples=[
1128-
{"client_id": {"type": "string"}, "client_secret": {"type": "string"}}
1129-
],
1121+
examples=[{"client_id": {"type": "string"}, "client_secret": {"type": "string"}}],
11301122
title="OAuth input specification",
11311123
)
11321124
complete_oauth_server_output_specification: Optional[Dict[str, Any]] = Field(
@@ -1789,9 +1781,7 @@ class RecordSelector(BaseModel):
17891781
description="Responsible for filtering records to be emitted by the Source.",
17901782
title="Record Filter",
17911783
)
1792-
schema_normalization: Optional[
1793-
Union[SchemaNormalization, CustomSchemaNormalization]
1794-
] = Field(
1784+
schema_normalization: Optional[Union[SchemaNormalization, CustomSchemaNormalization]] = Field(
17951785
SchemaNormalization.None_,
17961786
description="Responsible for normalization according to the schema.",
17971787
title="Schema Normalization",
@@ -2016,9 +2006,7 @@ class Config:
20162006
description="Component used to fetch data incrementally based on a time field in the data.",
20172007
title="Incremental Sync",
20182008
)
2019-
name: Optional[str] = Field(
2020-
"", description="The stream name.", example=["Users"], title="Name"
2021-
)
2009+
name: Optional[str] = Field("", description="The stream name.", example=["Users"], title="Name")
20222010
primary_key: Optional[PrimaryKey] = Field(
20232011
"", description="The primary key of the stream.", title="Primary Key"
20242012
)
@@ -2276,9 +2264,7 @@ class ParentStreamConfig(BaseModel):
22762264

22772265
class StateDelegatingStream(BaseModel):
22782266
type: Literal["StateDelegatingStream"]
2279-
name: str = Field(
2280-
..., description="The stream name.", example=["Users"], title="Name"
2281-
)
2267+
name: str = Field(..., description="The stream name.", example=["Users"], title="Name")
22822268
full_refresh_stream: DeclarativeStream = Field(
22832269
...,
22842270
description="Component used to coordinate how records are extracted across stream slices and request pages when the state is empty or not provided.",
@@ -2331,11 +2317,7 @@ class SimpleRetriever(BaseModel):
23312317
CustomPartitionRouter,
23322318
ListPartitionRouter,
23332319
SubstreamPartitionRouter,
2334-
List[
2335-
Union[
2336-
CustomPartitionRouter, ListPartitionRouter, SubstreamPartitionRouter
2337-
]
2338-
],
2320+
List[Union[CustomPartitionRouter, ListPartitionRouter, SubstreamPartitionRouter]],
23392321
]
23402322
] = Field(
23412323
[],
@@ -2384,9 +2366,7 @@ class AsyncRetriever(BaseModel):
23842366
)
23852367
download_extractor: Optional[
23862368
Union[CustomRecordExtractor, DpathExtractor, ResponseToFileExtractor]
2387-
] = Field(
2388-
None, description="Responsible for fetching the records from provided urls."
2389-
)
2369+
] = Field(None, description="Responsible for fetching the records from provided urls.")
23902370
creation_requester: Union[CustomRequester, HttpRequester] = Field(
23912371
...,
23922372
description="Requester component that describes how to prepare HTTP requests to send to the source API to create the async server-side job.",
@@ -2424,11 +2404,7 @@ class AsyncRetriever(BaseModel):
24242404
CustomPartitionRouter,
24252405
ListPartitionRouter,
24262406
SubstreamPartitionRouter,
2427-
List[
2428-
Union[
2429-
CustomPartitionRouter, ListPartitionRouter, SubstreamPartitionRouter
2430-
]
2431-
],
2407+
List[Union[CustomPartitionRouter, ListPartitionRouter, SubstreamPartitionRouter]],
24322408
]
24332409
] = Field(
24342410
[],
@@ -2496,12 +2472,10 @@ class DynamicDeclarativeStream(BaseModel):
24962472
stream_template: DeclarativeStream = Field(
24972473
..., description="Reference to the stream template.", title="Stream Template"
24982474
)
2499-
components_resolver: Union[HttpComponentsResolver, ConfigComponentsResolver] = (
2500-
Field(
2501-
...,
2502-
description="Component resolve and populates stream templates with components values.",
2503-
title="Components Resolver",
2504-
)
2475+
components_resolver: Union[HttpComponentsResolver, ConfigComponentsResolver] = Field(
2476+
...,
2477+
description="Component resolve and populates stream templates with components values.",
2478+
title="Components Resolver",
25052479
)
25062480

25072481

airbyte_cdk/sources/declarative/parsers/model_to_component_factory.py

+11-3
Original file line numberDiff line numberDiff line change
@@ -3322,13 +3322,21 @@ def create_fixed_window_call_rate_policy(
33223322
matchers=matchers,
33233323
)
33243324

3325-
def create_file_uploader(self, model: FileUploaderModel, config: Config, **kwargs: Any) -> FileUploader:
3325+
def create_file_uploader(
3326+
self, model: FileUploaderModel, config: Config, **kwargs: Any
3327+
) -> FileUploader:
33263328
name = "File Uploader"
33273329
requester = self._create_component_from_model(
3328-
model=model.requester, config=config, name=name, **kwargs,
3330+
model=model.requester,
3331+
config=config,
3332+
name=name,
3333+
**kwargs,
33293334
)
33303335
download_target_extractor = self._create_component_from_model(
3331-
model=model.download_target_extractor, config=config, name=name, **kwargs,
3336+
model=model.download_target_extractor,
3337+
config=config,
3338+
name=name,
3339+
**kwargs,
33323340
)
33333341
return FileUploader(requester, download_target_extractor)
33343342

airbyte_cdk/sources/declarative/retrievers/file_uploader.py

+13-4
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,12 @@
1111

1212

1313
class FileUploader:
14-
def __init__(self, requester: Requester, download_target_extractor: RecordExtractor, content_extractor: Optional[RecordExtractor] = None) -> None:
14+
def __init__(
15+
self,
16+
requester: Requester,
17+
download_target_extractor: RecordExtractor,
18+
content_extractor: Optional[RecordExtractor] = None,
19+
) -> None:
1520
self._requester = requester
1621
self._download_target_extractor = download_target_extractor
1722
self._content_extractor = content_extractor
@@ -22,14 +27,18 @@ def upload(self, record: Record) -> None:
2227
mocked_response.content = json.dumps(record.data)
2328
download_target = list(self._download_target_extractor.extract_records(mocked_response))[0]
2429
if not isinstance(download_target, str):
25-
raise ValueError(f"download_target is expected to be a str but was {type(download_target)}: {download_target}")
30+
raise ValueError(
31+
f"download_target is expected to be a str but was {type(download_target)}: {download_target}"
32+
)
2633

2734
response = self._requester.send_request(
28-
stream_slice=StreamSlice(partition={}, cursor_slice={}, extra_fields={"download_target": download_target}),
35+
stream_slice=StreamSlice(
36+
partition={}, cursor_slice={}, extra_fields={"download_target": download_target}
37+
),
2938
)
3039

3140
if self._content_extractor:
3241
raise NotImplementedError("TODO")
3342
else:
34-
with open(str(Path(__file__).parent / record.data["file_name"]), 'ab') as f:
43+
with open(str(Path(__file__).parent / record.data["file_name"]), "ab") as f:
3544
f.write(response.content)

airbyte_cdk/sources/declarative/stream_slicers/declarative_partition_generator.py

+9-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,15 @@ def __init__(
6464
def read(self) -> Iterable[Record]:
6565
for stream_data in self._retriever.read_records(self._json_schema, self._stream_slice):
6666
if isinstance(stream_data, Mapping):
67-
record = stream_data if isinstance(stream_data, Record) else Record(data=stream_data, stream_name=self.stream_name(), associated_slice=self._stream_slice, )
67+
record = (
68+
stream_data
69+
if isinstance(stream_data, Record)
70+
else Record(
71+
data=stream_data,
72+
stream_name=self.stream_name(),
73+
associated_slice=self._stream_slice,
74+
)
75+
)
6876
if self._file_uploader:
6977
self._file_uploader.upload(record)
7078
yield record

0 commit comments

Comments
 (0)