Get database
Tags: #notion #productivity #naas_drivers #operations #snippet
Last update: 2023-04-12 (Created: 2021-08-23)
Description: Notion is a powerful database tool that helps you organize and store your data in an intuitive and efficient way.
from naas_drivers import notion
# Enter Token API
token = "*****"
# Enter Database URL
database_url = "https://www.notion.so/********"
database = notion.connect(notion_token).database.get(database_url, query={})
database
df_notion = database.df()
df_notion