rsblox

Crates.iorsblox
lib.rsrsblox
version0.0.1
sourcesrc
created_at2023-03-19 17:40:18.111058
updated_at2023-03-19 17:40:18.111058
descriptionA Rust library for the Roblox API.
homepagehttps://github.com/royce-mathew/robloxapi.
repositoryhttps://github.com/royce-mathew/robloxapi.git
max_upload_size
id814588
size21,646
Royce Mathew (royce-mathew)

documentation

README

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;
}
Commit count: 33

cargo fmt