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:
-
Go to the Notion Developer Portal: Visit Notion Developer Portal.
-
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".
-
Save the Integration:
- Once the integration is created, you will be provided with an "Internal Integration Token". Copy this token.
-
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:
- As a parameter when creating an instance of
NotionConnection
. - As a secret in Streamlit's secrets management.
- 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
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for st_notion_connection-0.0.1.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7a1ef186f7c4fe94166becccc79c7ce137fec84bfe4b18f744d2096cc6c3f4ac |
|
MD5 | 3dbc946dbe3b982272a64c68b01d7ee3 |
|
BLAKE2b-256 | f7b67725638184b6b72dddaab59e012d3ad64060791bb744f390e3b04390405c |
Hashes for st_notion_connection-0.0.1-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | b7696dcd642501c72a11ff27797eb3907e8f57fd9c751f1a7e1413216f27045e |
|
MD5 | 920dbd1d2804018ae997c438799d525c |
|
BLAKE2b-256 | a28424b7819635f2793df22d8c0e262544ec77a19dc625ea3bc6d185fb4f1307 |