Crates.io | trovo |
lib.rs | trovo |
version | 0.6.0 |
source | src |
created_at | 2021-07-05 10:16:26.549379 |
updated_at | 2024-06-12 14:13:41.743926 |
description | A trovo.live api & chat client written in and for rust |
homepage | |
repository | https://github.com/AircastDev/trovo-rs |
max_upload_size | |
id | 418961 |
size | 118,358 |
A Rust api & chat client for Trovo.
It currently doesn't support all of the trovo api, feel free to open a PR adding new endpoints.
Find a user by username and then connect to their chat.
use futures::prelude::*;
use std::{env, error::Error};
use trovo::ClientId;
#[tokio::main]
async fn main() -> Result<(), Box<dyn Error>> {
let client_id = env::var("CLIENT_ID").expect("missing CLIENT_ID env var");
let username = env::var("USER_NAME").expect("missing USER_NAME env var");
let client = trovo::Client::new(ClientId::new(client_id));
println!("looking up user '{}'", username);
let user = client
.user(username)
.await?
.expect("no user found for the given username");
println!("found user {:#?}", user);
let mut messages = client.chat_messages_for_channel(&user.channel_id).await?;
println!("listening for chat messages");
while let Some(msg) = messages.next().await {
let msg = msg?;
println!("[{}] {}", msg.nick_name, msg.content);
}
Ok(())
}
Licensed under either of
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.