Skip to content

Instantly share code, notes, and snippets.

@GINAGC
GINAGC / notion2Habitica.py
Created August 24, 2023 12:20 — forked from gauchy/notion2Habitica.py
Notion to Habitica Sync tool
import requests, json
#Notion's token and databaseId
token = 'XXX'
databaseId = 'XXX'
#Notion's headers
headers = {
"Authorization": "Bearer " + token,
"Content-Type": "application/json",