airbyte-source-google-drive 0.1.0rc1.dev202501201950__tar.gz → 0.1.0rc1.dev202501202317__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.
Potentially problematic release.
This version of airbyte-source-google-drive might be problematic. Click here for more details.
- {airbyte_source_google_drive-0.1.0rc1.dev202501201950 → airbyte_source_google_drive-0.1.0rc1.dev202501202317}/PKG-INFO +1 -1
- {airbyte_source_google_drive-0.1.0rc1.dev202501201950 → airbyte_source_google_drive-0.1.0rc1.dev202501202317}/pyproject.toml +1 -1
- {airbyte_source_google_drive-0.1.0rc1.dev202501201950 → airbyte_source_google_drive-0.1.0rc1.dev202501202317}/source_google_drive/stream_reader.py +1 -1
- {airbyte_source_google_drive-0.1.0rc1.dev202501201950 → airbyte_source_google_drive-0.1.0rc1.dev202501202317}/README.md +0 -0
- {airbyte_source_google_drive-0.1.0rc1.dev202501201950 → airbyte_source_google_drive-0.1.0rc1.dev202501202317}/source_google_drive/__init__.py +0 -0
- {airbyte_source_google_drive-0.1.0rc1.dev202501201950 → airbyte_source_google_drive-0.1.0rc1.dev202501202317}/source_google_drive/exceptions.py +0 -0
- {airbyte_source_google_drive-0.1.0rc1.dev202501201950 → airbyte_source_google_drive-0.1.0rc1.dev202501202317}/source_google_drive/run.py +0 -0
- {airbyte_source_google_drive-0.1.0rc1.dev202501201950 → airbyte_source_google_drive-0.1.0rc1.dev202501202317}/source_google_drive/source.py +0 -0
- {airbyte_source_google_drive-0.1.0rc1.dev202501201950 → airbyte_source_google_drive-0.1.0rc1.dev202501202317}/source_google_drive/spec.py +0 -0
- {airbyte_source_google_drive-0.1.0rc1.dev202501201950 → airbyte_source_google_drive-0.1.0rc1.dev202501202317}/source_google_drive/utils.py +0 -0
|
@@ -5,7 +5,7 @@ requires = [
|
|
|
5
5
|
build-backend = "poetry.core.masonry.api"
|
|
6
6
|
|
|
7
7
|
[tool.poetry]
|
|
8
|
-
version = "0.1.0-rc.1.
|
|
8
|
+
version = "0.1.0-rc.1.dev202501202317"
|
|
9
9
|
name = "airbyte-source-google-drive"
|
|
10
10
|
description = "Source implementation for Google Drive."
|
|
11
11
|
authors = [
|
|
@@ -281,4 +281,4 @@ class SourceGoogleDriveStreamReader(AbstractFileBasedStreamReader):
|
|
|
281
281
|
return {"file_url": absolute_file_path, "bytes": file_size, "file_relative_path": file_relative_path}
|
|
282
282
|
|
|
283
283
|
except Exception as e:
|
|
284
|
-
raise ErrorDownloadingFile(f"There was an error while trying to download the file: {str(e)}")
|
|
284
|
+
raise ErrorDownloadingFile(f"There was an error while trying to download the file {file.uri}: {str(e)}")
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|