Skip to content

Instantly share code, notes, and snippets.

@fadingpisces
fadingpisces / notion.py
Created October 20, 2021 13:29
Notion Hook for Apache Airflow
import json
from airflow.hooks.http_hook import HttpHook
from airflow.hooks.base import BaseHook
from airflow.exceptions import AirflowException
ENDPOINT_UPLOAD_DATA = "api.notion.com/v1/pages"
ENDPOINT_CREATE_DB = "api.notion.com/v1/databases/"
ENDPOINT_RETRIEVE_DB = "api.notion.com/v1/databases/"
{
"parent": {
"database_id": "YOUR_DATABASE_ID"
},
"properties": {
"Name": {
"title": [
{
"text": {
"content": "your name"