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='テスト')
]
)
Use Original Prop and Database page.
Available Class
- Checkbox
- Date
- MultiSelect
- Number
- PhoneNumber
- Relation
- Select
- Status
- Text
- Title
- Url
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.8.9.tar.gz
(35.2 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.8.9-py3-none-any.whl
(59.5 kB
view details)
File details
Details for the file lotion-0.8.9.tar.gz.
File metadata
- Download URL: lotion-0.8.9.tar.gz
- Upload date:
- Size: 35.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bf516f60c4431ae6e9caedf9398cc4c7118ed9aef014b9d05c1ebf58aeeba752
|
|
| MD5 |
9fcaad38eb1e19fac195208d7f1bdaa2
|
|
| BLAKE2b-256 |
cdeb12212be39fe4495e5ca59f9e6fe419b91bcf9232d932aff7306702062902
|
File details
Details for the file lotion-0.8.9-py3-none-any.whl.
File metadata
- Download URL: lotion-0.8.9-py3-none-any.whl
- Upload date:
- Size: 59.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
91c7766267af036483b78625c0c196170ef83602a6c56661f72e30df595a3aba
|
|
| MD5 |
f004c50e4c2f61ad6b8306a0307aaa90
|
|
| BLAKE2b-256 |
2b3592d25c1ae7103dc010ecde3aa8f46b7048de17750463999df4f0a97791dc
|