Skip to main content

Streamlit Connection for Notion API.

Project description

🔗 Streamlit Notion Connection: Unlock the Power of Notion in Your Data Apps

Effortlessly integrate Notion Connection with your Streamlit apps to enhance data interaction and visualization

Why Streamlit Notion Connection?

As more teams and individuals rely on Notion for project management, note-taking, and collaboration, the ability to seamlessly connect Notion with your data applications becomes invaluable. Streamlit Notion API allows you to effortlessly integrate Notion's powerful API into your Streamlit apps, enabling you to fetch, manipulate, and visualize data from Notion databases and pages. This integration empowers your Streamlit data apps to leverage the rich data stored in Notion, creating more dynamic and interactive user experiences.

Installation

pip install st-notion-connection

Usage

Obtaining Notion API Credentials

To use the Notion API, you need to obtain an API key by creating an integration in the Notion Developer Portal. Follow these steps:

  1. Go to the Notion Developer Portal: Visit Notion Developer Portal.

  2. Create a New Integration:

    • Click on the "New integration" button.
    • Fill in the required details such as name, and select the workspace you want to integrate with.
    • Set the integration type to "Internal Integration".
  3. Save the Integration:

    • Once the integration is created, you will be provided with an "Internal Integration Token". Copy this token.
  4. Add the Integration to Your Workspace:

    • Go to the workspace you selected during integration creation.
    • Click on "Share" in the top-right corner.
    • Add the integration you created to the workspace.

Setting Up the Notion API Key

You can provide the Notion API key in three ways:

  1. As a parameter when creating an instance of NotionConnection.
  2. As a secret in Streamlit's secrets management.
  3. As an environment variable NOTION_API_KEY.

Examples

import streamlit as st
from streamlit_notion import NotionConnection

# Create connection
conn = st.connection("notion", type=NotionConnection)

databases = conn.list_databases()

# st.write(databases)

for database in databases["results"]:
    r = conn.query(database["id"], page_size=1)
    st.write(r)

Methods

  • list_databases(): Lists all databases in the Notion workspace.
  • api(): Returns the Notion client instance.
  • query(database_id, ttl=3600, **kwargs): Queries a Notion database and caches the results for a specified time-to-live (TTL).

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

st_notion_connection-0.0.1.tar.gz (3.7 kB view details)

Uploaded Source

Built Distribution

st_notion_connection-0.0.1-py3-none-any.whl (4.2 kB view details)

Uploaded Python 3

File details

Details for the file st_notion_connection-0.0.1.tar.gz.

File metadata

  • Download URL: st_notion_connection-0.0.1.tar.gz
  • Upload date:
  • Size: 3.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for st_notion_connection-0.0.1.tar.gz
Algorithm Hash digest
SHA256 7a1ef186f7c4fe94166becccc79c7ce137fec84bfe4b18f744d2096cc6c3f4ac
MD5 3dbc946dbe3b982272a64c68b01d7ee3
BLAKE2b-256 f7b67725638184b6b72dddaab59e012d3ad64060791bb744f390e3b04390405c

See more details on using hashes here.

File details

Details for the file st_notion_connection-0.0.1-py3-none-any.whl.

File metadata

File hashes

Hashes for st_notion_connection-0.0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 b7696dcd642501c72a11ff27797eb3907e8f57fd9c751f1a7e1413216f27045e
MD5 920dbd1d2804018ae997c438799d525c
BLAKE2b-256 a28424b7819635f2793df22d8c0e262544ec77a19dc625ea3bc6d185fb4f1307

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page