Skip to content

Instantly share code, notes, and snippets.

View uttkarsh21's full-sized avatar

Uttkarsh Narayan uttkarsh21

View GitHub Profile
@uttkarsh21
uttkarsh21 / notion2Habitica.py
Created November 6, 2023 19:49 — 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",