Movatterモバイル変換


[0]ホーム

URL:


Skip to main content
OurBuilding Ambient Agents with LangGraph course is now available on LangChain Academy!
Open In ColabOpen on GitHub

Joplin

Joplin is an open-source note-taking app. Capture your thoughts and securely access them from any device.

This notebook covers how to load documents from aJoplin database.

Joplin has aREST API for accessing its local database. This loader uses the API to retrieve all notes in the database and their metadata. This requires an access token that can be obtained from the app by following these steps:

  1. Open theJoplin app. The app must stay open while the documents are being loaded.
  2. Go to settings / options and select "Web Clipper".
  3. Make sure that the Web Clipper service is enabled.
  4. Under "Advanced Options", copy the authorization token.

You may either initialize the loader directly with the access token, or store it in the environment variable JOPLIN_ACCESS_TOKEN.

An alternative to this approach is to export theJoplin's note database to Markdown files (optionally, with Front Matter metadata) and use a Markdown loader, such as ObsidianLoader, to load them.

from langchain_community.document_loadersimport JoplinLoader
API Reference:JoplinLoader
loader= JoplinLoader(access_token="<access-token>")
docs= loader.load()

Related


[8]ページ先頭

©2009-2025 Movatter.jp