#dev #offset #limit #api #folder #await #uptobox

rs-uptobox

uptobox.com的包装器

1个不稳定版本

0.1.0 2023年1月25日

#73 in #await

GPL-3.0许可协议

33KB
826

rs-uptobox

此crate是uptobox api的包装器。

详细信息

// Get the files of //dev
let res = uptobox.get_files(&GetFiles::new("//dev")).await;

// Get the files of //dev with an order_by, an offset and a limit
let res = uptobox
    .get_files(
        &GetFiles::new("//dev")
            .order_by(OrderBy::FileSize)
            .offset(2)
            .limit(50),
    )
    .await;

// Move the files to a folder
let res = uptobox
    .move_files(vec!["file_id_1", "file_id_2"], 000000000)
    .await;

依赖项

~4–15MB
~220K SLoC