airbyte-source-google-search-console 1.5.6__py3-none-any.whl → 1.5.7__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.5.6.dist-info → airbyte_source_google_search_console-1.5.7.dist-info}/METADATA +1 -1
- {airbyte_source_google_search_console-1.5.6.dist-info → airbyte_source_google_search_console-1.5.7.dist-info}/RECORD +8 -8
- source_google_search_console/config_migrations.py +1 -0
- source_google_search_console/service_account_authenticator.py +2 -0
- source_google_search_console/source.py +2 -0
- source_google_search_console/streams.py +3 -1
- {airbyte_source_google_search_console-1.5.6.dist-info → airbyte_source_google_search_console-1.5.7.dist-info}/WHEEL +0 -0
- {airbyte_source_google_search_console-1.5.6.dist-info → airbyte_source_google_search_console-1.5.7.dist-info}/entry_points.txt +0 -0
@@ -1,5 +1,5 @@
|
|
1
1
|
source_google_search_console/__init__.py,sha256=HQCPu-CK7XmVDtP9rmTdB2XyraVCc6pv9pw38-O8y48,1191
|
2
|
-
source_google_search_console/config_migrations.py,sha256=
|
2
|
+
source_google_search_console/config_migrations.py,sha256=9C8QoELMAxt8NHiEY4fZMCYy5PwoOSUd6vSwoC1B3FM,4135
|
3
3
|
source_google_search_console/exceptions.py,sha256=iD3jYC4WxVCEKGsqQ7Vaj1tbjhJZ4S5mnSDnwFJdsIQ,1097
|
4
4
|
source_google_search_console/run.py,sha256=q6O2iXoxtrdgtodCaanqTO2eKzUvXF2iDCfmCxaPE24,462
|
5
5
|
source_google_search_console/schemas/search_analytics_all_fields.json,sha256=iQxRh_c_yz3uGofqpo1KX571TMmzYjKScb0PtI6SN_Q,1729
|
@@ -16,11 +16,11 @@ source_google_search_console/schemas/search_analytics_site_report_by_page.json,s
|
|
16
16
|
source_google_search_console/schemas/search_analytics_site_report_by_site.json,sha256=rAh6LuNy7nCrrNM9MTd0qxAVc886ecQaqWRgV63OfyA,1408
|
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
|
-
source_google_search_console/service_account_authenticator.py,sha256=
|
20
|
-
source_google_search_console/source.py,sha256=
|
19
|
+
source_google_search_console/service_account_authenticator.py,sha256=gjUxt0xFxj82uviCQNTsA1Jlee__UDhYNjE7bRO1G0U,1227
|
20
|
+
source_google_search_console/source.py,sha256=8n10_agSa2rvPvEyBvOfOpmpEardbEhi3H0vlK2A4_g,10002
|
21
21
|
source_google_search_console/spec.json,sha256=WYtFvaSqWYGm1Dt2yV9G92U78Q94rh9oarbxJe3H7xo,8470
|
22
|
-
source_google_search_console/streams.py,sha256=
|
23
|
-
airbyte_source_google_search_console-1.5.
|
24
|
-
airbyte_source_google_search_console-1.5.
|
25
|
-
airbyte_source_google_search_console-1.5.
|
26
|
-
airbyte_source_google_search_console-1.5.
|
22
|
+
source_google_search_console/streams.py,sha256=r_UtdC307x80gB1yTR7-yls0VswdFDPfVKLWfExt4Zc,19823
|
23
|
+
airbyte_source_google_search_console-1.5.7.dist-info/METADATA,sha256=JNczTH6phuq-BcF79HmujpUDvPBOtshi2Eeo9JoOKgI,5617
|
24
|
+
airbyte_source_google_search_console-1.5.7.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
|
25
|
+
airbyte_source_google_search_console-1.5.7.dist-info/entry_points.txt,sha256=DMcgc9bCX-Vt6hm_68pa77qS3eGdeMhg-UdlFc-XKUM,85
|
26
|
+
airbyte_source_google_search_console-1.5.7.dist-info/RECORD,,
|
@@ -6,8 +6,10 @@ import requests
|
|
6
6
|
from google.auth.transport.requests import Request
|
7
7
|
from google.oauth2.service_account import Credentials
|
8
8
|
from requests.auth import AuthBase
|
9
|
+
|
9
10
|
from source_google_search_console.exceptions import UnauthorizedServiceAccountError
|
10
11
|
|
12
|
+
|
11
13
|
DEFAULT_SCOPES = ["https://www.googleapis.com/auth/webmasters.readonly"]
|
12
14
|
|
13
15
|
|
@@ -10,6 +10,7 @@ from urllib.parse import urlparse
|
|
10
10
|
import jsonschema
|
11
11
|
import pendulum
|
12
12
|
import requests
|
13
|
+
|
13
14
|
from airbyte_cdk.models import FailureType, SyncMode
|
14
15
|
from airbyte_cdk.sources import AbstractSource
|
15
16
|
from airbyte_cdk.sources.streams import Stream
|
@@ -40,6 +41,7 @@ from source_google_search_console.streams import (
|
|
40
41
|
Sites,
|
41
42
|
)
|
42
43
|
|
44
|
+
|
43
45
|
custom_reports_schema = {
|
44
46
|
"type": "array",
|
45
47
|
"items": {
|
@@ -9,10 +9,12 @@ from urllib.parse import quote_plus, unquote_plus
|
|
9
9
|
|
10
10
|
import pendulum
|
11
11
|
import requests
|
12
|
+
from requests.auth import AuthBase
|
13
|
+
|
12
14
|
from airbyte_cdk.models import SyncMode
|
13
15
|
from airbyte_cdk.sources.streams import CheckpointMixin
|
14
16
|
from airbyte_cdk.sources.streams.http import HttpStream
|
15
|
-
|
17
|
+
|
16
18
|
|
17
19
|
BASE_URL = "https://www.googleapis.com/webmasters/v3/"
|
18
20
|
ROW_LIMIT = 25000
|
File without changes
|