|
from pprint import pprint |
|
import os |
|
import sys |
|
import json |
|
from datetime import datetime |
|
from notion_client import Client |
|
|
|
# Replace with your API key |
|
NOTION_API_KEY = os.environ.get("NOTION_API_KEY") |
|
|
|
notion = Client(auth=NOTION_API_KEY) |
|
|
|
# Get the database object |
|
#https://www.notion.so/some_id_here_as_hex?v=&pvs=4 |
|
database_id = 'some_id_here' |
|
|
|
# Function to insert values into the Notion database |
|
def insert_values(date,name, status, cat, location, instructor): |
|
status = status.lower() |
|
status = status[0].capitalize() + status[1:] |
|
new_page = { |
|
"Signed Off": {"date": {"start": date}}, |
|
"Name": {"title": [{"text": {"content": name}}]}, |
|
"Status": {"status": {"name": status}}, |
|
"Category": {"select": {"name": cat}}, |
|
"Location": {"rich_text": [{"text": {"content": location}}]}, |
|
"Instructor": {"rich_text": [{"text": {"content": instructor}}]} |
|
} |
|
notion.pages.create(parent={"database_id": database_id}, properties=new_page) |
|
|
|
items = json.loads(sys.stdin.read()) |
|
for i in items: |
|
date,name, cat, status, location, instructor = i['entry_date'],i['log_skill_name'],i['cat_name'],i['status'],i['log_location_name'],i['log_instructor_name'] |
|
date = datetime.fromtimestamp(date) |
|
|
|
insert_values(date.isoformat(),name,status,cat,location,instructor) |