-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathupdate_notion.py
136 lines (120 loc) · 3.94 KB
/
update_notion.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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
import os
import requests
from datetime import datetime
##corrected code
GITHUB_TOKEN = os.getenv('GITHUB_TOKEN')
NOTION_TOKEN = os.getenv('NOTION_TOKEN')
NOTION_REPO_STATS_DATABASE = os.getenv('NOTION_REPO_STATS_DATABASE')
REPO_OWNER = 'PMBB-Informatics-and-Genomics'
REPO_NAME = '.github'
github_headers = {
"Authorization": f"token {GITHUB_TOKEN}",
"Accept": "application/vnd.github.v3+json"
}
notion_headers = {
"Authorization": f"Bearer {NOTION_TOKEN}",
"Content-Type": "application/json",
"Notion-Version": "2022-06-28"
}
def fetch_repo_stats():
url = f"https://api.github.com/repos/{REPO_OWNER}/{REPO_NAME}"
response = requests.get(url, headers=github_headers)
response.raise_for_status()
return response.json()
def fetch_repo_contents():
url = f"https://api.github.com/repos/{REPO_OWNER}/{REPO_NAME}/contents"
response = requests.get(url, headers=github_headers)
response.raise_for_status()
return response.json()
def get_file_size(file_url):
try:
response = requests.get(file_url, headers=github_headers)
response.raise_for_status()
return len(response.content)
except requests.RequestException:
return 0
def post_to_notion(stats, files):
url = "https://api.notion.com/v1/pages"
file_details = '\n'.join([f"{file['name']} ({file['size']} bytes)" for file in files])
data = {
"parent": { "database_id": NOTION_REPO_STATS_DATABASE },
"properties": {
"Repository": {
"title": [
{
"text": {
"content": REPO_NAME
}
}
]
},
"Stars": {
"multi_select": [
{
"name": str(stats['stargazers_count'])
}
]
},
"Forks": {
"rich_text": [
{
"text": {
"content": str(stats['forks_count'])
}
}
]
},
"Open Issues": {
"rich_text": [
{
"text": {
"content": str(stats['open_issues_count'])
}
}
]
},
"Size (MB)": {
"rich_text": [
{
"text": {
"content": f"{stats['size'] / 1024:.2f} MB"
}
}
]
},
"File Details": {
"rich_text": [
{
"text": {
"content": file_details if file_details else "No files found"
}
}
]
},
"Description": {
"rich_text": [
{
"text": {
"content": stats['description'] if stats['description'] else "No description provided"
}
}
]
}
}
}
# Debug: Print the payload
print(f"Payload: {data}")
response = requests.post(url, headers=notion_headers, json=data)
# Debug: Print response details
print(f"Response Status Code: {response.status_code}")
print(f"Response Text: {response.text}")
response.raise_for_status()
return response.json()
repo_stats = fetch_repo_stats()
repo_contents = fetch_repo_contents()
# Create a list of file details including their sizes
file_details = [
{'name': item['name'], 'size': get_file_size(item['download_url']) if 'download_url' in item and item['type'] == 'file' else 0}
for item in repo_contents
]
post_to_notion(repo_stats, file_details)