Crate notion_sdk

Source
Expand description

githubcrates-iodocs-rs

UnOfficial Notion SDK mplemented by rust

§Examples

use notion_sdk::NotionApi;
async fn main(){
    let notion = NotionApi::new("token")?;
    let me = notion.users_me().await;
    println!("{:#?}", me);
}

Modules§

block
Notion Block
comment
Notion Comment
common
Notion Common
database
Notion DataBase
error
Notion Error
pages
Notion Page
pagination
Notion Pagination
search
Notion Search
user
Notion User

Structs§

NotionApi
Notion Api Client