步骤

  • 安装python的 notion-client 函式库by pip install notion-client ,可参考官方文件的说明其中也有使用教学
  • 照上一篇文章的说明使用notion-client的pages.create()方法把资料库设为parent来建立新页面,或是想成在资料库中建立新页面即可
  • 把新页面id记录下,使用 notion.blocks.children.append(block_id = 新页面id ,children) 在该页面中append元件
  • 范例

    范例中pages.create()的方法及 your_notion_secret & your_database_id 在上一篇文章中有说明,其余的code把子元件的type设定为嵌入连结 -> url设定为google首页 -> 把子元件append到新页面:

    from notion_client import Client

    # Initialize Notion client with your integration token
    notion = Client(auth="your_notion_secret")

    # Create a new page
    new_page = notion.pages.create(
    parent={"database_id": "your_database_id"},
    properties={
    "title": {
    "title": [
    {
    "text": {
    "content": "Your Page Title"
    }
    }
    ]
    }
    }
    )
    page_id = new_page[\'id\'] #储存新页面的id

    # Append a child block to the new page
    notion.blocks.children.append(
    block_id=page_id,
    children=[ #要append在新页面中的元件
    {
    "object": "block",
    "type": "embed",
    "embed": {
    "url": "https://www.google.com"
    }
    }
    ]
    )

    print(f"Page created with ID: {page_id}")