-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnotion_helper.py
52 lines (41 loc) · 1.46 KB
/
notion_helper.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
import datetime
import json
import requests
def get_notion_header(notion_api_token, notion_api_version):
return {
"Authorization": "Bearer " + notion_api_token,
"Content-Type": "application/json",
"Notion-Version": notion_api_version
}
def get_todoist_header(todoist_api_token):
return {"Authorization": "Bearer " + todoist_api_token}
def is_active_in_notion(notion_header, integration_page_id):
query_active = requests.get(
"https://api.notion.com/v1/pages/" + integration_page_id + "/properties/" + "ia%3Dl",
headers=notion_header
)
return json.loads(query_active.text)["checkbox"]
def post_status_to_notion(notion_header, integration_page_id, is_success):
if is_success:
message = "Ran successfully at " + str(datetime.datetime.today())
else:
message = "Failed to run at " + str(datetime.datetime.today())
requests.patch(
'https://api.notion.com/v1/pages/' + integration_page_id,
headers=notion_header,
data=json.dumps({
"properties": {
"Status": {
"rich_text": [
{
"type": "text",
"text": {
"content": message
},
"plain_text": message
}
]
}
}
})
)