模块
文档加载器(Document Loaders)
示例
Googledrive

Google Drive #

This notebook covers how to load documents from Google Drive. Currently, only Google Docs are supported.

Prerequisites #

  1. Create a Google Cloud project or use an existing project
  2. Enable the Google Drive API (opens in a new tab)
  3. Authorize credentials for desktop app (opens in a new tab)
  4. `pip

install

--upgrade

google-api-python-client

google-auth-httplib2

google-auth-oauthlib`

🧑 Instructions for ingesting your Google Docs data #

By default, the GoogleDriveLoader expects the credentials.json file to be ~/.credentials/credentials.json , but this is configurable using the credentials_path keyword argument. Same thing with token.json

token_path . Note that token.json will be created automatically the first time you use the loader.

GoogleDriveLoader can load from a list of Google Docs document ids or a folder id. You can obtain your folder and document id from the URL:

from langchain.document_loaders import GoogleDriveLoader
loader = GoogleDriveLoader(
    folder_id="1yucgL9WGgWZdM1TOuKkeghlPizuzMYb5",
    # Optional: configure whether to recursively fetch files from subfolders. Defaults to False.
    recursive=False
)
docs = loader.load()