Skip to content

Overview

Provide a simple ORM for Notion objects.

connect(**kwargs)

Connect to Notion using the provided integration token.

Source code in src/notional/__init__.py
13
14
15
16
17
18
def connect(**kwargs):
    """Connect to Notion using the provided integration token."""

    logger.debug("connecting to Notion...")

    return Session(**kwargs)