An unofficial wrapper for Notion's API, aiming to simplify the dynamic nature of interacting with Notion.
Project description
notion-api
Disclaimer: This is an unofficial package and has no affiliation with Notion.so
A few useful links: |
API Reference |
Notion API Changlog |
Notion.so Releases |
Notion Platform Roadmap |
A wrapper for Notion's API, aiming to simplify the dynamic nature of interacting with Notion.
This project is still a work in progress, and features will continue to change. Below are a few examples of the current functionality.
Install
pip install -U notion-api
Usage
import dotenv
import notion
dotenv.load_dotenv() # client will check for env variable 'NOTION_TOKEN'.
homepage = notion.Page('773b08ff38b44521b44b115827e850f2')
parent_db = notion.Database(homepage.parent_id)
# or assign through `token` parameter.
homepage = notion.Page('773b08ff38b44521b44b115827e850f2', token="secret_n2m52d1***")
# __get_item__ searchs for page property values if indexing a Page..
homepage['dependencies']
# {
# "id": "WYYq",
# "type": "relation",
# "relation": [
# {
# "id": "7bcbc8e6-e237-434b-bd0d-6b56e044200b"
# }
# ],
# "has_more": false
# }
# ..and searchs for property objects if indexing a Database.
parent_db['dependencies']
# {
# "id": "WYYq",
# "name": "dependencies",
# "type": "relation",
# "relation": {
# "database_id": "f5984a7e-2257-4ab0-9d0a-23ea12324031",
# "type": "dual_property",
# "dual_property": {
# "synced_property_name": "blocked",
# "synced_property_id": "wx%7DQ"
# }
# }
# }
homepage.last_edited.date() # out: 01/15/2023
homepage.title = "New Page Title"
Creating Pages/Databases/Blocks
The current version of the Notion api does not allow pages to be created to the parent workspace
.
Create objects by passing an existing Page/Database instance as an arg to the create
classmethods.
new_database = notion.Database.create(
homepage, database_title="A new database", name_column="name"
)
# name column refers to the column containing pages/page titles.
# Defaults to "Name" if None (all strings in Notion API are case-sensitive).
new_page = notion.Page.create(new_database, page_title="A new database row")
Blocks can be created with notion.api.blocktypefactory.BlockFactory
by appending to an exisiting Block or Page. The new block is always returned as a notion.api.notionblock.Block
instance.
from notion import properties as prop
# `new_synced_block` refers to the original synced block in the Notion UI.
original_synced_block = notion.BlockFactory.new_synced_block(homepage)
# Adding content to the synced block
notion.BlockFactory.paragraph(original_synced_block, [prop.RichText('This is a synced block.')])
# Referencing the synced block in a new page.
notion.BlockFactory.reference_synced_block(new_page, original_synced_block.id)
Example function: Appending blocks to a page as a reminder.
def in_block_reminder(page_id: str, message: str, user_name: str) -> None:
target_page = notion.Page(page_id)
mentionblock = notion.BlockFactory.paragraph(
target_page,
[
prop.Mention.user(
notion.Workspace.retrieve_user(user_name=user_name),
annotations=prop.Annotations(
code=True, bold=True, color=prop.BlockColor.purple
),
),
prop.RichText(" - "),
prop.Mention.date(
datetime.now().astimezone(target_page.tz).isoformat(),
annotations=prop.Annotations(
code=True, bold=True, color=prop.BlockColor.purple_background
),
),
prop.RichText(":"),
],
)
notion.BlockFactory.paragraph(mentionblock, [prop.RichText(message)])
notion.BlockFactory.divider(target_page)
>>> in_block_reminder(page_id="0b9eccfa890e4c3390175ee10c664a35", message="message here", user_name="Your Name")
Add, Set, & Delete - Page property values / Database property objects
The first argument for all database column methods is the name of the property,
If it does not exist, then a new property object is created.
If it already exists, then the method will overwrite it.
If the name passed already exists, but it's a different column type than the method used - then the API will overwrite this and change the property object to the new column type.
The original parameters will be saved if you decide to switch back (i.e. if you change a formula column to a select column, upon changing it back to a formula column, the original formula expression will still be there).
new_database.formula_column("page id", expression="id()")
new_database.delete_property("url")
new_database.multiselect_column(
"new options column",
options=[
prop.Option("option-a", prop.PropertyColor.red),
prop.Option("option-b", prop.PropertyColor.green),
prop.Option("option-c", prop.PropertyColor.blue),
],
)
# if an option does not already exist, a new one will be created with a random color.
# this is not true for `status` column types, which can only be edited via UI.
new_page.set_multiselect("options", ["option-a", "option-b"])
Database Queries
A single notion.query.propfilter.PropertyFilter
is equivalent to filtering one property type in Notion.
To build filters equivalent to Notion's 'advanced filters', use notion.query.compound.CompoundFilter
.
from datetime import datetime
from datetime import timedelta
from notion import query
TODAY = datetime.combine(datetime.today(), datetime.min.time())
TOMORROW = TODAY + timedelta(1)
query_filter = query.CompoundFilter()._and(
query.PropertyFilter.date("date", "created_time", "on_or_after", TODAY.isoformat()),
query.PropertyFilter.date("date", "created_time", "before", TOMORROW.isoformat()),
query.CompoundFilter()._or(
query.PropertyFilter.text("name", "title", "contains", "your page title"),
query.PropertyFilter.text("name", "title", "contains", "your other page title"),
),
)
query_sort = query.SortFilter(
[
query.PropertyValueSort.ascending("your property name"),
query.EntryTimestampSort.created_time_descending(),
]
)
query_result = new_database.query(
filter=query_filter,
sort=query_sort,
page_size=5,
filter_property_values=["name", "options"],
)
Exceptions & Validating Responses
# Errors in Notion requests return an object with the keys: 'object', 'status', 'code', and 'message'
homepage._patch_properties(payload={'an_incorrect_key':'value'})
# Example error object for line above..
# {
# 'object': 'error',
# 'status': 400,
# 'code': 'validation_error',
# 'message': 'body failed validation: body.an_incorrect_key should be not present, instead was `"value"`.'
# }
Traceback (most recent call last):
File "c:\path\to\file\_.py", line 6, in <module>
homepage._patch_properties(payload={'an_incorrect_key':'value'})
File "c:\...\notion\exceptions\validate.py", line 48, in validate_response
raise NotionValidationError(message)
notion.exceptions.errors.NotionValidationError: body failed validation: body.an_incorrect_key should be not present, instead was `"value"`.
Error 400: The request body does not match the schema for the expected parameters.
A common error to look out for is notion.exceptions.errors.NotionObjectNotFound
This error is often raised because your bot has not been added as a connection to the page.
By default, a bot will have access to the children of any Parent object it has access too.
Certain errors are returned with a long list of possible causes for failing validation, In these cases, the error is often the outlier in the list - for example:
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 notion_api-0.3.9-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | ba972391093d6fbfe97c42d7f1bb264d202b22415f4098957fccd252885d67a3 |
|
MD5 | ef3fe124381a36d81f2b280aef9e7dca |
|
BLAKE2b-256 | 8d9c46e70d571ab116947cc38597d1224b838418baac1bd1461bd0496ce8e5b8 |