Skip to content

Instantly share code, notes, and snippets.

View hristo-joia's full-sized avatar

Hristo Joia hristo-joia

View GitHub Profile
@hristo-joia
hristo-joia / notion2Habitica.py
Last active June 13, 2023 09:00 — forked from gauchy/notion2Habitica.py
Notion to Habitica Sync tool
#!/usr/bin/env python
import requests, json
#Notion's token and databaseId
token = 'XXX'
databaseId = 'XXX'
#Notion's headers
headers = {
"Authorization": "Bearer " + token,