-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnotion_client.py
76 lines (65 loc) · 2.12 KB
/
notion_client.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
import json
import sys
import requests
def create_page(notion_header, research_papers_page_id, document):
result = requests.post(
"https://api.notion.com/v1/pages",
headers=notion_header,
data=json.dumps({
"parent": {
"database_id": research_papers_page_id
},
"properties": {
"Name": {
"title": [
{
"text": {
"content": document['title'][0]
}
}
]
},
"Abstract": {
"rich_text": [
{
"text": {
"content": document['abstract']
}
}
]
},
"URL": {
"url": document['url']
},
"Bibcode": {
"rich_text": [
{
"text": {
"content": document['bibcode']
}
}
]
}
}
})
)
return result
def query_bibcodes(notion_header, research_papers_page_id):
result = requests.post(
"https://api.notion.com/v1/databases/" + research_papers_page_id + "/query",
headers=notion_header
)
bibcodes = []
if result.status_code == 200:
json_response = json.loads(result.text)
pages = json_response["results"]
for page in pages:
bibcode_list = page["properties"]["Bibcode"]["rich_text"]
if len(bibcode_list) != 0:
bibcodes.append(bibcode_list[0]["plain_text"])
else:
page_title = page["properties"]["Name"]["title"][0]["plain_text"]
raise Exception('Page ' + page_title + ' is missing a Bibcode')
else:
sys.exit('ERROR: Notion query failed')
return bibcodes