Export from Notion to SQLite
CloudQuery is an open-source data integration platform that allows you to export data from any source to any destination.
The CloudQuery Notion plugin allows you to sync data from Notion to any destination, including SQLite. It takes only minutes to get started.
Notion
The Notion source plugin for CloudQuery loads data from Notion to any of the supported CloudQuery destinations
cloudquery
v2.3.5
Source
SQLite
This destination plugin lets you sync data from a CloudQuery source to a SQLite database
Table of Contents
MacOS Setup
Step 1. Install CloudQuery
brew install cloudquery/tap/cloudquery
Step 2. Log in to CloudQuery CLI
cloudquery login
Step 3. Configure Notion source plugin
You can find more information about the configuration in the plugin documentation
kind: source
spec:
name: "notion"
path: "cloudquery/notion"
registry: "cloudquery"
version: "v2.3.5"
destinations:
- "postgresql"
spec:
bearer_token: "${NOTION_SECRET_KEY}"
Step 4. Configure SQLite destination plugin
You can find more information about the configuration in the plugin documentation
kind: destination
spec:
name: sqlite
path: cloudquery/sqlite
registry: cloudquery
version: "v2.9.4"
# Learn more about the configuration options at https://cql.ink/sqlite_destination
spec:
connection_string: ./db.sql
Step 5. Run Sync
cloudquery sync notion.yml sqlite.yml