A wrapper of Notion client for Python
Project description
Lotion
Lotion is a wrapper of notion-client.
You can use Notion API easily using Lotion.
Example
By notion-client
from notion_client import Client
client = Client(auth='NOTION_SECRET')
client.pages.create(
parent={
'type': 'database_id',
'database_id': 'abcd1234-4e63-4a46-9ffe-36adeb59ab30'
},
properties={
'Name': {
'title': [
{
'type': 'text',
'text': {
'content': 'テスト'
}
}
]
}
},
)
By lotion
from lotion import Lotion
lotion = Lotion.get_instance()
created_page = lotion.create_page_in_database(
database_id='abcd1234-4e63-4a46-9ffe-36adeb59ab30',
properties=[
Title.from_plain_text(name='Name', text='テスト')
]
)
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
lotion-0.0.1a2.tar.gz
(48.8 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
lotion-0.0.1a2-py3-none-any.whl
(54.3 kB
view details)
File details
Details for the file lotion-0.0.1a2.tar.gz.
File metadata
- Download URL: lotion-0.0.1a2.tar.gz
- Upload date:
- Size: 48.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.11.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5efd030401b3b1a7038eed506e68eba8b8efea69f469f15010930c9b5ede10d9
|
|
| MD5 |
4a61f6cac66b1ba92a9f4dd484710bcc
|
|
| BLAKE2b-256 |
b65ca330567dad80a10fdf91ba8df394b459ea00dd64aa0d8676615f8cfa6d9b
|
File details
Details for the file lotion-0.0.1a2-py3-none-any.whl.
File metadata
- Download URL: lotion-0.0.1a2-py3-none-any.whl
- Upload date:
- Size: 54.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.11.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ae2b17d90d7d0b7fe970e426ede6f22ea5517851c6a06d4f3271d749f74ec70b
|
|
| MD5 |
30d63ece9b45c80e00ed6d090ced2522
|
|
| BLAKE2b-256 |
66aa54c9eedb2b33913c2bc35aba4a5fe0b27d97ed31bf6e667dbaf5fd8decf9
|