airbyte-source-google-search-console 1.4.13__tar.gz → 1.5.1__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.4.13 → airbyte_source_google_search_console-1.5.1}/PKG-INFO +2 -2
- {airbyte_source_google_search_console-1.4.13 → airbyte_source_google_search_console-1.5.1}/pyproject.toml +2 -2
- {airbyte_source_google_search_console-1.4.13 → airbyte_source_google_search_console-1.5.1}/README.md +0 -0
- {airbyte_source_google_search_console-1.4.13 → airbyte_source_google_search_console-1.5.1}/source_google_search_console/__init__.py +0 -0
- {airbyte_source_google_search_console-1.4.13 → airbyte_source_google_search_console-1.5.1}/source_google_search_console/config_migrations.py +0 -0
- {airbyte_source_google_search_console-1.4.13 → airbyte_source_google_search_console-1.5.1}/source_google_search_console/exceptions.py +0 -0
- {airbyte_source_google_search_console-1.4.13 → airbyte_source_google_search_console-1.5.1}/source_google_search_console/run.py +0 -0
- {airbyte_source_google_search_console-1.4.13 → airbyte_source_google_search_console-1.5.1}/source_google_search_console/schemas/search_analytics_all_fields.json +0 -0
- {airbyte_source_google_search_console-1.4.13 → airbyte_source_google_search_console-1.5.1}/source_google_search_console/schemas/search_analytics_by_country.json +0 -0
- {airbyte_source_google_search_console-1.4.13 → airbyte_source_google_search_console-1.5.1}/source_google_search_console/schemas/search_analytics_by_date.json +0 -0
- {airbyte_source_google_search_console-1.4.13 → airbyte_source_google_search_console-1.5.1}/source_google_search_console/schemas/search_analytics_by_device.json +0 -0
- {airbyte_source_google_search_console-1.4.13 → airbyte_source_google_search_console-1.5.1}/source_google_search_console/schemas/search_analytics_by_page.json +0 -0
- {airbyte_source_google_search_console-1.4.13 → airbyte_source_google_search_console-1.5.1}/source_google_search_console/schemas/search_analytics_by_query.json +0 -0
- {airbyte_source_google_search_console-1.4.13 → airbyte_source_google_search_console-1.5.1}/source_google_search_console/schemas/search_analytics_keyword_page_report.json +0 -0
- {airbyte_source_google_search_console-1.4.13 → airbyte_source_google_search_console-1.5.1}/source_google_search_console/schemas/search_analytics_keyword_site_report_by_page.json +0 -0
- {airbyte_source_google_search_console-1.4.13 → airbyte_source_google_search_console-1.5.1}/source_google_search_console/schemas/search_analytics_keyword_site_report_by_site.json +0 -0
- {airbyte_source_google_search_console-1.4.13 → airbyte_source_google_search_console-1.5.1}/source_google_search_console/schemas/search_analytics_page_report.json +0 -0
- {airbyte_source_google_search_console-1.4.13 → airbyte_source_google_search_console-1.5.1}/source_google_search_console/schemas/search_analytics_site_report_by_page.json +0 -0
- {airbyte_source_google_search_console-1.4.13 → airbyte_source_google_search_console-1.5.1}/source_google_search_console/schemas/search_analytics_site_report_by_site.json +0 -0
- {airbyte_source_google_search_console-1.4.13 → airbyte_source_google_search_console-1.5.1}/source_google_search_console/schemas/sitemaps.json +0 -0
- {airbyte_source_google_search_console-1.4.13 → airbyte_source_google_search_console-1.5.1}/source_google_search_console/schemas/sites.json +0 -0
- {airbyte_source_google_search_console-1.4.13 → airbyte_source_google_search_console-1.5.1}/source_google_search_console/service_account_authenticator.py +0 -0
- {airbyte_source_google_search_console-1.4.13 → airbyte_source_google_search_console-1.5.1}/source_google_search_console/source.py +0 -0
- {airbyte_source_google_search_console-1.4.13 → airbyte_source_google_search_console-1.5.1}/source_google_search_console/spec.json +0 -0
- {airbyte_source_google_search_console-1.4.13 → airbyte_source_google_search_console-1.5.1}/source_google_search_console/streams.py +0 -0
{airbyte_source_google_search_console-1.4.13 → airbyte_source_google_search_console-1.5.1}/PKG-INFO
RENAMED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: airbyte-source-google-search-console
|
3
|
-
Version: 1.
|
3
|
+
Version: 1.5.1
|
4
4
|
Summary: Source implementation for Google Search Console.
|
5
5
|
Home-page: https://airbyte.com
|
6
6
|
License: Elv2
|
@@ -12,7 +12,7 @@ Classifier: Programming Language :: Python :: 3
|
|
12
12
|
Classifier: Programming Language :: Python :: 3.9
|
13
13
|
Classifier: Programming Language :: Python :: 3.10
|
14
14
|
Classifier: Programming Language :: Python :: 3.11
|
15
|
-
Requires-Dist: airbyte-cdk (
|
15
|
+
Requires-Dist: airbyte-cdk (>=1,<2)
|
16
16
|
Requires-Dist: google-api-python-client (==2.105.0)
|
17
17
|
Requires-Dist: google-auth (==2.23.3)
|
18
18
|
Project-URL: Documentation, https://docs.airbyte.com/integrations/sources/google-search-console
|
@@ -5,7 +5,7 @@ requires = [
|
|
5
5
|
build-backend = "poetry.core.masonry.api"
|
6
6
|
|
7
7
|
[tool.poetry]
|
8
|
-
version = "1.
|
8
|
+
version = "1.5.1"
|
9
9
|
name = "airbyte-source-google-search-console"
|
10
10
|
description = "Source implementation for Google Search Console."
|
11
11
|
authors = [
|
@@ -23,7 +23,7 @@ packages = [
|
|
23
23
|
[tool.poetry.dependencies]
|
24
24
|
python = "^3.9,<3.12"
|
25
25
|
google-api-python-client = "==2.105.0"
|
26
|
-
airbyte-cdk = "
|
26
|
+
airbyte-cdk = "^1"
|
27
27
|
google-auth = "==2.23.3"
|
28
28
|
|
29
29
|
[tool.poetry.scripts]
|
{airbyte_source_google_search_console-1.4.13 → airbyte_source_google_search_console-1.5.1}/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
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|