Skip to content

Instantly share code, notes, and snippets.

@gauchy
gauchy / notion2Habitica.py
Last active April 24, 2024 03:31
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",