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.9.1.tar.gz
(35.9 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.9.1-py3-none-any.whl
(60.9 kB
view details)
File details
Details for the file lotion-0.9.1.tar.gz.
File metadata
- Download URL: lotion-0.9.1.tar.gz
- Upload date:
- Size: 35.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f12ae45c71a81a871fa262f26116851ef274f0bb7ffa3133007c881ddb9e8943
|
|
| MD5 |
6f51e9acf2429f3e958a85394c5e64d5
|
|
| BLAKE2b-256 |
4d4bf8bccdb24c7d3813aa9141e9a6fdab781a061b85d0ad0c92d69d470eb2c9
|
File details
Details for the file lotion-0.9.1-py3-none-any.whl.
File metadata
- Download URL: lotion-0.9.1-py3-none-any.whl
- Upload date:
- Size: 60.9 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 |
23059457d4584129fe677bced556ec4880a4dbc221c440f21158645862d9fdca
|
|
| MD5 |
3beecc0e71f1a6759651410cd652b8e7
|
|
| BLAKE2b-256 |
973c5abe0960a2c6d137ddbfcc7555b8ba39e7885812a17fbfadf857c685f9b3
|