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.1a2.tar.gz
(34.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.1a2-py3-none-any.whl
(57.7 kB
view details)
File details
Details for the file lotion-0.8.1a2.tar.gz.
File metadata
- Download URL: lotion-0.8.1a2.tar.gz
- Upload date:
- Size: 34.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.11.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
12919fef7e179ed88383072bc1f52890711aebac4f992db1e80b6fb800ecf7c8
|
|
| MD5 |
f4b37ed6924d43bb39270a6153e52084
|
|
| BLAKE2b-256 |
e2358279329ecfead3db3792ed70e632ca1c4beebe25b6b8bc052f0ef424042e
|
File details
Details for the file lotion-0.8.1a2-py3-none-any.whl.
File metadata
- Download URL: lotion-0.8.1a2-py3-none-any.whl
- Upload date:
- Size: 57.7 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 |
5904b6799144b58f068a47746ab28bc8703865930866367c5d0e191147d9ebfd
|
|
| MD5 |
07b757da35feea214fbb7951387b000c
|
|
| BLAKE2b-256 |
559cdc48323b89ce2e47961b9f261c8f986a21738ac3890082d7f775cf58ce41
|