Skip to content

Instantly share code, notes, and snippets.

View emkoithan's full-sized avatar

Emily Koithan emkoithan

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