airbyte-source-google-search-console 1.5.6__tar.gz → 1.5.7__tar.gz
Sign up to get free protection for your applications and to get access to all the features.
- {airbyte_source_google_search_console-1.5.6 → airbyte_source_google_search_console-1.5.7}/PKG-INFO +1 -1
- {airbyte_source_google_search_console-1.5.6 → airbyte_source_google_search_console-1.5.7}/pyproject.toml +1 -1
- {airbyte_source_google_search_console-1.5.6 → airbyte_source_google_search_console-1.5.7}/source_google_search_console/config_migrations.py +1 -0
- {airbyte_source_google_search_console-1.5.6 → airbyte_source_google_search_console-1.5.7}/source_google_search_console/service_account_authenticator.py +2 -0
- {airbyte_source_google_search_console-1.5.6 → airbyte_source_google_search_console-1.5.7}/source_google_search_console/source.py +2 -0
- {airbyte_source_google_search_console-1.5.6 → airbyte_source_google_search_console-1.5.7}/source_google_search_console/streams.py +3 -1
- {airbyte_source_google_search_console-1.5.6 → airbyte_source_google_search_console-1.5.7}/README.md +0 -0
- {airbyte_source_google_search_console-1.5.6 → airbyte_source_google_search_console-1.5.7}/source_google_search_console/__init__.py +0 -0
- {airbyte_source_google_search_console-1.5.6 → airbyte_source_google_search_console-1.5.7}/source_google_search_console/exceptions.py +0 -0
- {airbyte_source_google_search_console-1.5.6 → airbyte_source_google_search_console-1.5.7}/source_google_search_console/run.py +0 -0
- {airbyte_source_google_search_console-1.5.6 → airbyte_source_google_search_console-1.5.7}/source_google_search_console/schemas/search_analytics_all_fields.json +0 -0
- {airbyte_source_google_search_console-1.5.6 → airbyte_source_google_search_console-1.5.7}/source_google_search_console/schemas/search_analytics_by_country.json +0 -0
- {airbyte_source_google_search_console-1.5.6 → airbyte_source_google_search_console-1.5.7}/source_google_search_console/schemas/search_analytics_by_date.json +0 -0
- {airbyte_source_google_search_console-1.5.6 → airbyte_source_google_search_console-1.5.7}/source_google_search_console/schemas/search_analytics_by_device.json +0 -0
- {airbyte_source_google_search_console-1.5.6 → airbyte_source_google_search_console-1.5.7}/source_google_search_console/schemas/search_analytics_by_page.json +0 -0
- {airbyte_source_google_search_console-1.5.6 → airbyte_source_google_search_console-1.5.7}/source_google_search_console/schemas/search_analytics_by_query.json +0 -0
- {airbyte_source_google_search_console-1.5.6 → airbyte_source_google_search_console-1.5.7}/source_google_search_console/schemas/search_analytics_keyword_page_report.json +0 -0
- {airbyte_source_google_search_console-1.5.6 → airbyte_source_google_search_console-1.5.7}/source_google_search_console/schemas/search_analytics_keyword_site_report_by_page.json +0 -0
- {airbyte_source_google_search_console-1.5.6 → airbyte_source_google_search_console-1.5.7}/source_google_search_console/schemas/search_analytics_keyword_site_report_by_site.json +0 -0
- {airbyte_source_google_search_console-1.5.6 → airbyte_source_google_search_console-1.5.7}/source_google_search_console/schemas/search_analytics_page_report.json +0 -0
- {airbyte_source_google_search_console-1.5.6 → airbyte_source_google_search_console-1.5.7}/source_google_search_console/schemas/search_analytics_site_report_by_page.json +0 -0
- {airbyte_source_google_search_console-1.5.6 → airbyte_source_google_search_console-1.5.7}/source_google_search_console/schemas/search_analytics_site_report_by_site.json +0 -0
- {airbyte_source_google_search_console-1.5.6 → airbyte_source_google_search_console-1.5.7}/source_google_search_console/schemas/sitemaps.json +0 -0
- {airbyte_source_google_search_console-1.5.6 → airbyte_source_google_search_console-1.5.7}/source_google_search_console/schemas/sites.json +0 -0
- {airbyte_source_google_search_console-1.5.6 → airbyte_source_google_search_console-1.5.7}/source_google_search_console/spec.json +0 -0
@@ -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
|
{airbyte_source_google_search_console-1.5.6 → airbyte_source_google_search_console-1.5.7}/README.md
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|