We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
GoogleDrive
1 parent 98e7d14 commit 456b441Copy full SHA for 456b441
python/cocoindex/sources.py
@@ -16,3 +16,13 @@ class LocalFile(op.SourceSpec):
16
# If provided, files matching these patterns will be excluded.
17
# See https://docs.rs/globset/latest/globset/index.html#syntax for the syntax of the patterns.
18
excluded_patterns: list[str] | None = None
19
+
20
21
+class GoogleDrive(op.SourceSpec):
22
+ """Import data from Google Drive."""
23
24
+ _op_category = op.OpCategory.SOURCE
25
26
+ service_account_credential_path: str
27
+ root_folder_id: str
28
+ binary: bool = False
0 commit comments