#youtube #twitch #stream #trovo #vkplay

reydenx

Implementation of the Reyden-X API. Reyden-X is an automated service for promoting live broadcasts on external sites with integrated system of viewers and views management.

6 releases

0.1.6 Jul 18, 2024
0.1.5 Jun 28, 2024
0.1.3 Dec 1, 2023
0.1.2 Sep 27, 2023
0.1.1 Aug 24, 2023

#599 in Games

Download history 5/week @ 2024-04-01 120/week @ 2024-06-24 16/week @ 2024-07-01 109/week @ 2024-07-15

245 downloads per month

MIT/Apache

42KB
789 lines

REYDEN-X

Reyden-X is an automated service for promoting live broadcasts on external sites with integrated system of viewers and views management.

Quickstart

use reydenx::{
    client::{Auth, Client},
    user::{account, balance},
};

fn main() {
    let mut client = Client::new(String::from("EMAIL"), String::from("PASSWORD"));

    if let Ok(client) = client.auth() {
        let res = balance(client);
        println!("{:#?}", res);

        let res = account(client);
        println!("{:#?}", res);
    }
}

Dependencies

~7–20MB
~291K SLoC