airbyte-source-google-drive 0.4.0.dev202504191947__tar.gz → 0.4.0rc1__tar.gz
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_drive-0.4.0.dev202504191947 → airbyte_source_google_drive-0.4.0rc1}/PKG-INFO +2 -2
- {airbyte_source_google_drive-0.4.0.dev202504191947 → airbyte_source_google_drive-0.4.0rc1}/pyproject.toml +2 -2
- {airbyte_source_google_drive-0.4.0.dev202504191947 → airbyte_source_google_drive-0.4.0rc1}/source_google_drive/stream_reader.py +1 -1
- {airbyte_source_google_drive-0.4.0.dev202504191947 → airbyte_source_google_drive-0.4.0rc1}/README.md +0 -0
- {airbyte_source_google_drive-0.4.0.dev202504191947 → airbyte_source_google_drive-0.4.0rc1}/source_google_drive/__init__.py +0 -0
- {airbyte_source_google_drive-0.4.0.dev202504191947 → airbyte_source_google_drive-0.4.0rc1}/source_google_drive/exceptions.py +0 -0
- {airbyte_source_google_drive-0.4.0.dev202504191947 → airbyte_source_google_drive-0.4.0rc1}/source_google_drive/run.py +0 -0
- {airbyte_source_google_drive-0.4.0.dev202504191947 → airbyte_source_google_drive-0.4.0rc1}/source_google_drive/schemas/file_permissions.json +0 -0
- {airbyte_source_google_drive-0.4.0.dev202504191947 → airbyte_source_google_drive-0.4.0rc1}/source_google_drive/schemas/identities.json +0 -0
- {airbyte_source_google_drive-0.4.0.dev202504191947 → airbyte_source_google_drive-0.4.0rc1}/source_google_drive/source.py +0 -0
- {airbyte_source_google_drive-0.4.0.dev202504191947 → airbyte_source_google_drive-0.4.0rc1}/source_google_drive/spec.py +0 -0
- {airbyte_source_google_drive-0.4.0.dev202504191947 → airbyte_source_google_drive-0.4.0rc1}/source_google_drive/stream_permissions_reader.py +0 -0
- {airbyte_source_google_drive-0.4.0.dev202504191947 → airbyte_source_google_drive-0.4.0rc1}/source_google_drive/utils.py +0 -0
{airbyte_source_google_drive-0.4.0.dev202504191947 → airbyte_source_google_drive-0.4.0rc1}/PKG-INFO
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: airbyte-source-google-drive
|
|
3
|
-
Version: 0.4.
|
|
3
|
+
Version: 0.4.0rc1
|
|
4
4
|
Summary: Source implementation for Google Drive.
|
|
5
5
|
License: ELv2
|
|
6
6
|
Author: Airbyte
|
|
@@ -10,7 +10,7 @@ Classifier: License :: Other/Proprietary License
|
|
|
10
10
|
Classifier: Programming Language :: Python :: 3
|
|
11
11
|
Classifier: Programming Language :: Python :: 3.10
|
|
12
12
|
Classifier: Programming Language :: Python :: 3.11
|
|
13
|
-
Requires-Dist: airbyte-cdk[file-based] (
|
|
13
|
+
Requires-Dist: airbyte-cdk[file-based] (>=6.45.10,<7.0.0)
|
|
14
14
|
Requires-Dist: google-api-python-client (==2.104.0)
|
|
15
15
|
Requires-Dist: google-api-python-client-stubs (==1.18.0)
|
|
16
16
|
Requires-Dist: google-auth-httplib2 (==0.1.1)
|
|
@@ -5,7 +5,7 @@ requires = [
|
|
|
5
5
|
build-backend = "poetry.core.masonry.api"
|
|
6
6
|
|
|
7
7
|
[tool.poetry]
|
|
8
|
-
version = "0.4.0.
|
|
8
|
+
version = "0.4.0-rc.1"
|
|
9
9
|
name = "airbyte-source-google-drive"
|
|
10
10
|
description = "Source implementation for Google Drive."
|
|
11
11
|
authors = [
|
|
@@ -31,7 +31,7 @@ google-api-python-client-stubs = "==1.18.0"
|
|
|
31
31
|
extras = [
|
|
32
32
|
"file-based",
|
|
33
33
|
]
|
|
34
|
-
version = "6.45.
|
|
34
|
+
version = "^6.45.10"
|
|
35
35
|
|
|
36
36
|
[tool.poetry.scripts]
|
|
37
37
|
source-google-drive = "source_google_drive.run:run"
|
|
@@ -310,7 +310,7 @@ class SourceGoogleDriveStreamReader(AbstractFileBasedStreamReader):
|
|
|
310
310
|
|
|
311
311
|
file_record_data = FileRecordData(
|
|
312
312
|
folder=file_paths[self.FILE_FOLDER],
|
|
313
|
-
|
|
313
|
+
file_name=file_name,
|
|
314
314
|
bytes=file_size,
|
|
315
315
|
id=file.id,
|
|
316
316
|
mime_type=file.mime_type,
|
{airbyte_source_google_drive-0.4.0.dev202504191947 → airbyte_source_google_drive-0.4.0rc1}/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
|