11 unstable releases

0.6.2 Jun 25, 2023
0.6.1 Jun 18, 2023
0.5.0 Mar 1, 2021
0.4.2 Nov 2, 2020
0.1.0 May 19, 2019

#587 in Web programming

Download history 8/week @ 2024-02-18 16/week @ 2024-02-25 9/week @ 2024-03-10 1/week @ 2024-03-17 1/week @ 2024-03-24 157/week @ 2024-03-31

168 downloads per month

MIT license

27KB
505 lines

telegraph-rs

crates.io Documentation

telegraph binding in Rust

see https://telegra.ph/api for more information

Examples

#[tokio::main]
async fn main() {
    use telegraph_rs::{Telegraph, html_to_node};

    let telegraph = Telegraph::new("test_account").create().await.unwrap();

    let page = telegraph
        .create_page("title", &html_to_node("<p>Hello, world</p>"), false)
        .await
        .unwrap();
}

lib.rs:

telegraph API binding in Rust

See https://telegra.ph/api for more information

Examples

use telegraph_rs::{Telegraph, html_to_node};

let telegraph = Telegraph::new("test_account").create().await?;

let page = telegraph.create_page("title", &html_to_node("<p>Hello, world</p>"), false).await?;

Dependencies

~4–18MB
~258K SLoC