airbyte-source-google-search-console 1.5.6__py3-none-any.whl → 1.5.7__py3-none-any.whl

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: airbyte-source-google-search-console
3
- Version: 1.5.6
3
+ Version: 1.5.7
4
4
  Summary: Source implementation for Google Search Console.
5
5
  Home-page: https://airbyte.com
6
6
  License: Elv2
@@ -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=IdiV5EHazAA4hMFm8S1Dqhb-8DMERriEvaYVMsPzs4U,4134
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=ocSisT5IYegoZf4atsGm9u2lJCdmeSf_9o4q7YN3vD4,1225
20
- source_google_search_console/source.py,sha256=S0IIPPiI6ixHMIaezNQO7sfIqVio2_xyQZWPhzhxS_4,10000
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=uknk6Fuq47NxuLfElV6Wbk5qXxtMRC1XxQNFRLMQyq8,19821
23
- airbyte_source_google_search_console-1.5.6.dist-info/METADATA,sha256=WBkyqSOzOPsHYbbMj3RCDur_GLGm7Jb1YrLnb7Rfgxg,5617
24
- airbyte_source_google_search_console-1.5.6.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
25
- airbyte_source_google_search_console-1.5.6.dist-info/entry_points.txt,sha256=DMcgc9bCX-Vt6hm_68pa77qS3eGdeMhg-UdlFc-XKUM,85
26
- airbyte_source_google_search_console-1.5.6.dist-info/RECORD,,
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,,
@@ -11,6 +11,7 @@ from airbyte_cdk.entrypoint import AirbyteEntrypoint
11
11
  from airbyte_cdk.sources import Source
12
12
  from airbyte_cdk.sources.message import InMemoryMessageRepository, MessageRepository
13
13
 
14
+
14
15
  logger = logging.getLogger("airbyte_logger")
15
16
 
16
17
 
@@ -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
- from requests.auth import AuthBase
17
+
16
18
 
17
19
  BASE_URL = "https://www.googleapis.com/webmasters/v3/"
18
20
  ROW_LIMIT = 25000