Unofficial Python client for official Notion API
Project description
pytion
Independent unofficial Python client for the official Notion API (for internal integrations only)
Client is built with its own object model based on API
So if you are using notion.so and want to automate some stuff with the original API, you're welcome!
You can read any available data, create basic models, and even work with databases.
Current Notion API version = "2022-06-28"
*does not use notion-sdk-py client
See Change Log
Contents
Quick start
pip install pytion
Create new integration and get your Notion API Token at notion.so -> here.
Add your new integration 'manager' to your pages or databases by going to the page's menu (three dots), at the bottom of the menu clicking on Add connections and then searching for you new Integration.
from pytion import Notion; no = Notion(token=SOME_TOKEN)
Or put your token for Notion API into file token
at script directory and use simple no = Notion()
from pytion import Notion
no = Notion(token=SOME_TOKEN)
page = no.pages.get("PAGE ID") # retrieve page data (not content) and create object
blocks = page.get_block_children() # retrieve page content and create list of objects
database = no.databases.get("Database ID") # retrieve database data (not content) and create object
# retrieve database content by filtering with sorting
pages = database.db_filter(property_name="Done", property_type="checkbox", value=False, descending="title")
In [1]: from pytion import Notion
In [2]: no = Notion(token=SOME_TOKEN)
In [3]: page = no.pages.get("a458613160da45fa96367c8a594297c7")
In [4]: print(page)
Notion/pages/Page(Example page)
In [5]: blocks = page.get_block_children_recursive()
In [6]: print(blocks)
Notion/blocks/BlockArray(## Migration planning [x] Rese)
In [7]: print(blocks.obj)
## Migration planning
[x] Reset new switch 2022-05-12T00:00:00.000+03:00 → 2022-05-13T01:00:00.000+03:00
- reboot
- hold reset button
[x] Connect to console with baud rate 9600
[ ] Skip default configuration dialog
Use LinkTo(configs)
[Integration changes](https://developers.notion.com/changelog?page=2)
In [8]: print(blocks.obj.simple)
Migration planning
Reset new switch 2022-05-12T00:00:00.000+03:00 → 2022-05-13T01:00:00.000+03:00
reboot
hold reset button
Connect to console with baud rate 9600
Skip default configuration dialog
Use https://api.notion.com/v1/pages/90ea1231865f4af28055b855c2fba267
https://developers.notion.com/changelog?page=2
Pytion API
Almost all operations are carried out through Notion
or Element
object:
page = no.pages.get("a458613160da45fa96367c8a594297c7")
# no -> Notion
# pages -> URI in https://api.notion.com/v1/PAGES/a458613160da45fa96367c8a594297c7
# get -> pytion API method
# page -> Element
# page.obj -> Page (main data structure)
so:
isinstance(no, Notion) == True
isinstance(no.pages, Element) == True
isinstance(no.databases, Element) == True
isinstance(page, Element) == True
isinstance(page.obj, Page) == True
and if you want to retrieve a database - you must use "databases" URI
database = no.databases.get("123412341234")
and the same applies for "blocks" and "users". Valid URI-s are:
- pages
- blocks
- databases
- users
When you work with existing Element
object like page
above, all methods below will be applied to this Page:
new_page = page.page_update(title="new page name 2")
# new_page is not a new page, it is updated page
# new_page.obj is equal page.obj except title and last_edited properties
Search
There is a search example:
no = Notion(token)
r = no.search("updating", object_type="page")
print(r.obj)
# output:
# Page for updating
# Page to updating databases
pytion.api.Element
There is a list of available methods for communicate with api.notion.com. These methods are better structured in next chapter.
.get(id_)
- Get Element by ID.
.get_parent(id_)
- Get parent object of current object if possible.
.get_block_children(id_, limit)
- Get children Block objects of current Block object (tabulated texts) if exist.
.get_block_children_recursive(id_, max_depth, limit, force)
- Get children Block objects of current Block object (tabulated texts) if exist recursive.
.get_page_property(property_id, id_, limit)
- Retrieve a page property item.
.get_page_properties(title_only, obj)
- Retrieve the title or all properties of current Page or Page obj
(deprecated, useful for v1.3.0 only)
.db_query(id_, limit, filter_, sorts)
- Query Database.
.db_filter(...see desc...)
- Query Database.
.db_create(database_obj, parent, properties, title)
- Create Database.
There is no way to delete a database object yet!
.db_update(id_, title, properties)
- Update Database.
.page_create(page_obj, parent, properties, title)
- Create Page.
.page_update(id_, properties, title, archived)
- Update Page.
.block_update(id_, block_obj, new_text, archived)
- Update text in Block.
.block_append(id_, block, blocks, after)
- Append block or blocks children.
.get_myself()
- Retrieve my bot User.
.from_linkto(linkto)
- Creates new Element object based on LinkTo information.
.from_object(model)
- Creates new Element object from Page, Block or Database object. Usable while Element object contains an Array.
More details and usage examples of these methods you can see into func descriptions.
Models
pytion.models
There are classes based on API structures:
RichText
based on Rich text objectRichTextArray
is a list of RichText objects with useful methods- You can create object by simple
RichTextArray.create("My title text")
and then use it in any methods - Any Rich Text getting from API will be RichTextArray
str()
returns plain text of all "Rich Texts". ez+
operator is available withstr
andRichTextArray
.simple
property returns stripped plain text without any markdown syntax. useful for URL
- You can create object by simple
Database
based on Database object- You can create object
Database.create(...)
and/or use.db_create(...)
API method - attrs represent API model. Complex structures like
created_by
are wrapped in internal objects - use
.db_update()
API method for modify a real database (for ex. properties or title) - use
.db_query()
to get all database content (it will bePageArray
) - use
.db_filter()
to get database content with filtering and/or sorting - has
.description
attr - has
.is_inline
attr with the value True if the database appears in the page as an inline block - has
.public_url
attr when a page or database has been shared publicly
- You can create object
Page
based on Page object- You can create object
Page.create(...)
and/or use.page_create(...)
API method - use
.page_update()
method to modify attributes or delete the page - use
.get_block_children()
to get page content (without nested blocks) (it will beBlockArray
) - use
.get_block_children_recursive()
to get page content with nested blocks - use
.get_page_property()
to retrieve the specificPropertyValue
of the page - has
.public_url
attr when a page or database has been shared publicly
- You can create object
Block
based on Block object- You can create object
Block.create(...)
of specific type from support matrix below and then use it while creating pages or appending - use
.block_update()
to replace content or change extension attributes or delete the block - use
.block_append()
to add a new block to a page or add a nested block to another block - use
.get_block_children()
to get first level nested blocks - use
.get_block_children_recursive()
to get all levels nested blocks
- You can create object
User
based on User object- You can create object
User.create(...)
and use it in some properties likepeople
type property - You can retrieve more data about a User by his ID using
.get()
- use
.get_myself()
to retrieve the current bot User - has
.workspace_name
attr forbot
type users
- You can create object
Property
based on Property object- You can create object
Property.create(...)
while creating or editing database:.db_create()
or.db_update()
formula
type properties configuration is not supported
- You can create object
PropertyValue
based on Property values- You can create object
PropertyValue.create(...)
to set or edit page properties by.page_create()
or.page_update()
files
,formula
,rollup
type properties are not editable
- You can create object
There are also useful internal classes:
BlockArray
is found when API returns page content in "list of blocks" format- it is useful to represent all content by
str()
- also it has
simple
property likeRichTextArray
object - it automatically indents
str
output of nested blocks
- it is useful to represent all content by
PageArray
is found when API returns the result of database query (list of pages)LinkTo
is basic internal model to link to any Notion object- You can create object
LinkTo.create()
and use it in many places and methods - use
LinkTo(from_object=my_page1)
to quickly create a link to any existing object of pytion.models link
property ofLinkTo
returns expanded URL
- You can create object
ElementArray
is found while using.search()
endpoint. It's a parent ofPageArray
And every model has a
.get()
method that returns API friendly JSON.
Supported Property types
Property type | value type | read (DB) | read value (Page) | create (DB) | create value (Page) | Oper attrs | Config attrs |
---|---|---|---|---|---|---|---|
title |
RichTextArray |
+ | + | + | + | ||
rich_text |
RichTextArray |
+ | + | + | + | ||
number |
int /float |
+ | + | + | + | ||
select |
str |
+ | + | + | + | ||
multi_select |
List[str] |
+ | + | + | + | ||
status |
str |
+ | + | + | +**** | options , groups (read-only) |
|
date |
str |
+ | + | + | + | start: datetime end: datetime * |
|
people |
List[User] |
+ | + | + | +** | ||
files |
+ | - | + | - | |||
checkbox |
bool |
+ | + | + | + | ||
url |
str |
+ | + | + | + | ||
email |
str |
+ | + | + | + | ||
phone_number |
str |
+ | + | + | + | ||
formula |
- | + | - | n/a | |||
relation |
List[LinkTo] |
+ | + | + | + | has_more: bool |
single_property / dual_property |
rollup |
depends on relation and function | + | + | + | n/a | function , relation_property_id / relation_property_name , rollup_property_id / rollup_property_name |
|
unique_id |
int |
+ | + | + | n/a | prefix |
|
created_time *** |
datetime |
+ | + | + | n/a | ||
created_by *** |
User |
+ | + | + | n/a | ||
last_edited_time *** |
datetime |
+ | + | + | n/a | ||
last_edited_by *** |
User |
+ | + | + | n/a |
[*] - Create examples:
pv = PropertyValue.create(type_="date", value=datetime.now())
pv = PropertyValue.create(type_="date", date={"start": str(datetime(2022, 2, 1, 5)), "end": str(datetime.now())})
[**] - Create example:
user = User.create('1d393ffb5efd4d09adfc2cb6738e4812')
pv = PropertyValue.create(type_="people", value=[user])
[***] - Every Base model like Page already has mandatory attributes created/last_edited returned by API
[****] - Status type is not configurable. API doesn't support NEW options added via Property modify or updating a Page
[*****] - Notion API hasn'thas_more
attr. Only 25 references can be shown in the array
More details and examples can be found in Database section
Supported block types
At present the API only supports the block types which are listed in the reference below. Any unsupported block types will continue to appear in the structure, but only contain a type
set to "unsupported"
.
Colors are not yet supported.
Every Block has mandatory attributes and extension attributes. There are mandatory:
id: str
- UUID-64 without hyphensobject: str
- always"block"
(from API)created_time: datetime
- from APIcreated_by: User
- from APIlast_edited_time: datetime
- from APIlast_edited_by: User
- from APItype: str
- the type of block (from API)has_children: bool
- does the block have children blocks (from API)archived: bool
- does the block marked as deleted (from API)text: Union[str, RichTextArray]
- main contentsimple: str
- only simple text string (url expanded)
Extension attributes are listed below in support matrix:
Block Type | Description | Read support | Create support | Can have children | Extension attributes |
---|---|---|---|---|---|
paragraph |
Simple Block with text | + | + | + | |
heading_1 |
Heading Block with text highest level | + | + | -/+* | is_toggleable: bool |
heading_2 |
Heading Block with text medium level | + | + | -/+* | is_toggleable: bool |
heading_3 |
Heading Block with text lowest level | + | + | -/+* | is_toggleable: bool |
bulleted_list_item |
Text Block with bullet | + | - | + | |
numbered_list_item |
Text Block with number | + | - | + | |
to_do |
Text Block with checkbox | + | + | + | checked: bool |
toggle |
Text Block with toggle to children blocks | + | - | + | |
code |
Text Block with code style | + | + | + | language: str , caption: RichTextArray |
child_page |
Page inside | + | - | + | |
child_database |
Database inside | + | - | + | |
embed |
Embed online content | + | - | - | caption: RichTextArray |
image |
Embed image content | + | - | - | caption: RichTextArray , expiry_time: datetime |
video |
Embed video content | + | - | - | caption: RichTextArray , expiry_time: datetime |
file |
Embed file content | + | - | - | caption: RichTextArray , expiry_time: datetime |
pdf |
Embed pdf content | + | - | - | caption: RichTextArray , expiry_time: datetime |
bookmark |
Block for URL Link | + | - | - | caption: RichTextArray |
callout |
Highlighted footnote text Block | + | - | + | icon: dict |
quote |
Text Block with quote style | + | - | + | |
equation |
KaTeX compatible text Block | + | - | - | |
divider |
Simple line to divide the page | + | - | - | |
table_of_contents |
Block with content structure in the page | + | - | - | |
column |
- | - | + | ||
column_list |
- | - | - | ||
link_preview |
Same as bookmark |
+ | - | - | |
synced_block |
Block for synced content aka parent | + | - | + | synced_from: LinkTo |
template |
Template Block title | + | - | + | |
link_to_page |
Block with link to particular page @... |
+ | - | - | link: LinkTo |
table |
Table Block with some attrs | + | - | + | table_width: int |
table_row |
Children Blocks with table row content | + | - | - | |
breadcrumb |
Empty Block actually | + | - | - | |
unsupported |
Blocks unsupported by API | + | - | - |
[*] -
heading_X
blocks can have children ifis_toggleable
is True
Block creating examples
Create paragraph
block object and add it to Notion:
from pytion.models import Block
my_text_block = Block.create("Hello World!")
my_text_block = Block.create(text="Hello World!", type_="paragraph") # the same
# indented append my block to other known block:
no.blocks.block_append("5f60073a9dda4a9c93a212a74a107359", block=my_text_block)
# append my block to a known page (in the end)
no.blocks.block_append("9796f2525016128d9af4bf12b236b555", block=my_text_block) # the same operation actually
# another way to append:
my_page = no.pages.get("9796f2525016128d9af4bf12b236b555")
my_page.block_append(block=my_text_block)
# insert block after the existing block
my_page.block_append(block=my_text_block, after="1496f2525016128d9af4bf12b236b000")
# OR
existing_block = no.blocks.get("1496f2525016128d9af4bf12b236b000")
my_page.block_append(block=my_text_block, after=existing_block.obj)
Create to_do
block object:
from pytion.models import Block
my_todo_block = Block.create("create readme documentation", type_="to_do")
my_todo_block2 = Block.create("add 'create' method", type_="to_do", checked=True)
Create code
block object:
from pytion.models import Block
my_code_block = Block.create("code example here", type_="code", language="javascript")
my_code_block2 = Block.create("another code example", type_="code", caption="it will be plain text code block with caption")
Create heading
block object:
from pytion.models import Block
my_code_block = Block.create("Title 1 example here", type_="heading_1")
my_code_block2 = Block.create("Toggle Title 2", type_="heading_2", is_toggleable=True)
Block deleting
no.blocks.block_update("3d4af9f0f98641dea8c44e3864eed4d0", archived=True)
# or if you have Element with Block object already
block.block_update(archived=True)
Database operations
Retrieving
from pytion import Notion
no = Notion(token=TOKEN)
# get all pages from Database
# example 1
pages = no.databases.db_query("114f1ef1f1241e2f12f41fe2f")
# example 2
db = no.databases.get("114f1ef1f1241e2f12f41fe2f")
pages = db.db_query()
print(pages.obj)
# get pages with "task" in title
pages = db.db_filter("task")
# get all pages with sorting by property name "Tags"
pages = db.db_filter("", ascending="Tags")
pages = db.db_filter("", descending="Tags")
# get pages with Status property equals Done
pages = db.db_filter(property_name="Status", property_type="status", value="Done")
# get pages with Price property greater than 150
pages = db.db_filter(property_name="Price", property_type="number", condition="greater_than", value=150)
# complex query
pages = db.db_filter(
property_name="WorkTime", property_type="date", condition="before",
value=datetime.now(), descending="Deadline", limit=25
)
pages = db.db_filter(
property_name="last_edited_time", property_type="timestamp", condition="on_or_after",
value="2023-10-03", limit=1
)
Queries with multifiltering and multisorting are not supported
But you can compose your custom filter dict from API reference and calldb.db_filter(raw={...})
Filter conditions and types combination -> Official API reference
After you got pages
which is Element
object, you can not call API methods directly on pages
because there is PageArray
object with List of Pages.
If you need to change a Page or something else, you can follow these steps:
# 1. create new Element object with non-list object type
page = no.pages.from_object(pages.obj[14]) # choosed page from the PageArray
# 2. call the desired API method on this page
page.page_update(archived=True) # delete Page example
Appending (creating a Page)
There is a way to create a row into database. The same method is used to create any Page.
The difference is in only in parent
argument which can be the Page or the Database.
from pytion.models import LinkTo
# choose the parent target
# it can be the database
parent = LinkTo.create(database_id="043cb52491a44b80a5e5006237a4278f")
# or the page
parent2 = LinkTo.create(page_id="043cb52491a44b80a5e5006237a4278f")
# if you need to set Properties
from pytion.models import PropertyValue
props = {
"Tags": PropertyValue.create(type_="multi_select", value=["tag1", "tag2"]),
"done": PropertyValue.create("checkbox", True),
"AnotherPropertyNAME": PropertyValue.create("date", datetime.now()),
}
# create the Page
page = no.pages.page_create(parent=parent, title="Page 2") # without properties (will be empty)
# or
page2 = no.pages.page_create(parent=parent, properties=props, title="Page 2") # with properties
Property Values
Pytion Properties support table is described above
There are Properties that are used in Database operations and PropertyValues that are used in Page operations.
It's necessary to choose the type (type_
arg) and value (value
) of property.
The table shows the mapping between Property type and value (python) type.
The type_
must correspond to your database schema in Notion.
from datetime import datetime
from pytion.models import PropertyValue, LinkTo, RichTextArray, User
# + relation type:
pv = PropertyValue.create("relation", value=[LinkTo.create(page_id="04262843082a478d97f741948a32613b")])
# + people type:
pv = PropertyValue.create(type_="people", value=[User.create('1d393ffb5efd4d09adfc2cb6738e4812')])
# + date type:
pv = PropertyValue.create(type_="date", value=datetime.now())
pv = PropertyValue.create(type_="date", date={"start": str(datetime(2022, 2, 1, 5)), "end": str(datetime.now())})
# + rich_text (text or title field)
pv = PropertyValue.create(type_="rich_text", value="Something Interesting")
pv = PropertyValue.create("rich_text", value=RichTextArray.create("Something Interesting"))
# + nubmer
pv = PropertyValue.create(type_="number", value=156.2)
# + status
pv = PropertyValue.create("status", value="Done")
# update needed property values
new_props = {
"Tags": PropertyValue.create("multi_select", ["tag2"]),
"done": PropertyValue.create("checkbox", False),
"when": PropertyValue.create("date", datetime.now()),
}
page = page_for_updates.page_update(properties=new_props)
page = no.pages.page_update(page_for_updates_id, properties=new_props) # the same
# rename (edit title property)
page = page_for_updates.page_update(title=new_name)
Pytion also provides the ways to change database schema - create/update/rename/delete properties:
from pytion.models import Property
# rename property
properties = {"Name": Property.create(type_="title", name="Subject")}
database = database_for_updates.db_update(properties=properties)
database = no.databases.db_update(database_for_updates_id, properties=properties) # the same
# change property type
properties = {"Tags": Property.create("select")}
database = database_for_updates.db_update(properties=properties)
# delete property from database
properties = {"Old property name": Property.create(None)}
database = database_for_updates.db_update(properties=properties)
# rename database
database = database_for_updates.db_update(title="Refactoring")
Logging
Logging is muted by default. To enable to stdout and/or to file:
from pytion import setup_logging
setup_logging(level="debug", to_console=True, filename="pytion.log")
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
File details
Details for the file pytion-1.3.5.tar.gz
.
File metadata
- Download URL: pytion-1.3.5.tar.gz
- Upload date:
- Size: 62.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b399e7762318d9287422330d0aeef4d632ad31fb61b0a2f39b42e05d03ff10f8 |
|
MD5 | 096f4389c0d28305aef309acb667c5a6 |
|
BLAKE2b-256 | 73774df87f0ea8d144d982cfc4acee8ee8904d472905d7426422525bf4632a24 |
File details
Details for the file pytion-1.3.5-py3-none-any.whl
.
File metadata
- Download URL: pytion-1.3.5-py3-none-any.whl
- Upload date:
- Size: 50.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2877340692f9231aa407f4ae6fe2a77ef69074fa69c2a9e706da16724e3b7405 |
|
MD5 | 8532555af13217225052c1384fc6ddc1 |
|
BLAKE2b-256 | 7b1fda3829c040e27513831b663fad7384c3ce3b6615d84e60d8736c672c8a54 |