Skip to content

Instantly share code, notes, and snippets.

View vandaref's full-sized avatar

Thomas vandaref

View GitHub Profile
@gauchy
gauchy / notion2Habitica.py
Last active June 25, 2025 18:41
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",