airbyte-source-google-search-console 1.4.7__py3-none-any.whl → 1.4.9__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_source_google_search_console-1.4.7.dist-info → airbyte_source_google_search_console-1.4.9.dist-info}/METADATA +1 -1
- {airbyte_source_google_search_console-1.4.7.dist-info → airbyte_source_google_search_console-1.4.9.dist-info}/RECORD +5 -5
- source_google_search_console/source.py +2 -2
- {airbyte_source_google_search_console-1.4.7.dist-info → airbyte_source_google_search_console-1.4.9.dist-info}/WHEEL +0 -0
- {airbyte_source_google_search_console-1.4.7.dist-info → airbyte_source_google_search_console-1.4.9.dist-info}/entry_points.txt +0 -0
@@ -17,10 +17,10 @@ source_google_search_console/schemas/search_analytics_site_report_by_site.json,s
|
|
17
17
|
source_google_search_console/schemas/sitemaps.json,sha256=coyPSZCAfzMheybfRp4WPAZCp5JF2KGRF2rWK8oC080,1775
|
18
18
|
source_google_search_console/schemas/sites.json,sha256=WNiCRuStPL1YkJiFa8FEbNJmqaERAOf9Yow6ygIumvo,383
|
19
19
|
source_google_search_console/service_account_authenticator.py,sha256=ocSisT5IYegoZf4atsGm9u2lJCdmeSf_9o4q7YN3vD4,1225
|
20
|
-
source_google_search_console/source.py,sha256=
|
20
|
+
source_google_search_console/source.py,sha256=S0IIPPiI6ixHMIaezNQO7sfIqVio2_xyQZWPhzhxS_4,10000
|
21
21
|
source_google_search_console/spec.json,sha256=WYtFvaSqWYGm1Dt2yV9G92U78Q94rh9oarbxJe3H7xo,8470
|
22
22
|
source_google_search_console/streams.py,sha256=avllhiXP9DGuFBdiYEaaiKCog0bzskeRISCXGxSqiT4,19120
|
23
|
-
airbyte_source_google_search_console-1.4.
|
24
|
-
airbyte_source_google_search_console-1.4.
|
25
|
-
airbyte_source_google_search_console-1.4.
|
26
|
-
airbyte_source_google_search_console-1.4.
|
23
|
+
airbyte_source_google_search_console-1.4.9.dist-info/METADATA,sha256=o6r_IaB7SwHsIsP6RNFQJ5-wPq0bdlBNr60cMHfon9Q,5619
|
24
|
+
airbyte_source_google_search_console-1.4.9.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
25
|
+
airbyte_source_google_search_console-1.4.9.dist-info/entry_points.txt,sha256=DMcgc9bCX-Vt6hm_68pa77qS3eGdeMhg-UdlFc-XKUM,85
|
26
|
+
airbyte_source_google_search_console-1.4.9.dist-info/RECORD,,
|
@@ -3,13 +3,13 @@
|
|
3
3
|
#
|
4
4
|
|
5
5
|
import json
|
6
|
+
import logging
|
6
7
|
from typing import Any, List, Mapping, Optional, Tuple, Union
|
7
8
|
from urllib.parse import urlparse
|
8
9
|
|
9
10
|
import jsonschema
|
10
11
|
import pendulum
|
11
12
|
import requests
|
12
|
-
from airbyte_cdk.logger import AirbyteLogger
|
13
13
|
from airbyte_cdk.models import FailureType, SyncMode
|
14
14
|
from airbyte_cdk.sources import AbstractSource
|
15
15
|
from airbyte_cdk.sources.streams import Stream
|
@@ -108,7 +108,7 @@ class SourceGoogleSearchConsole(AbstractSource):
|
|
108
108
|
raise AirbyteTracedException(message=message, internal_message=message, failure_type=FailureType.config_error)
|
109
109
|
return config
|
110
110
|
|
111
|
-
def check_connection(self, logger:
|
111
|
+
def check_connection(self, logger: logging.Logger, config: Mapping[str, Any]) -> Tuple[bool, Any]:
|
112
112
|
try:
|
113
113
|
config = self._validate_and_transform(config)
|
114
114
|
stream_kwargs = self.get_stream_kwargs(config)
|
File without changes
|