#roblox-api #roblox #api #api-wrapper

yanked rsblox

A Rust library for the Roblox API

0.0.1 Mar 19, 2023

#5 in #roblox-api

MIT license

21KB
513 lines

rsblox

rsblox is a async Rust roblox api wrapper; Fork of PythonicIconic's RbxAPI-rs.

Usage

TBA

Example of retrieving a given user, three different ways!

use rbxapi;

#[tokio::main]
async fn main() {
    let cookie = "your_cookie";
    let client = rbxapi::Client.new().cookie(cookie).await;
    
    let my_user = client.current_user().await;
    let str_user = client.user("builderman").await;
    let int_user = client.user(156).await;
}

Dependencies

~6–20MB
~287K SLoC