25 个版本

使用旧 Rust 2015

0.10.3 2021 年 1 月 6 日
0.10.2 2019 年 12 月 31 日
0.10.1 2018 年 11 月 22 日
0.9.0 2018 年 3 月 23 日
0.2.4 2016 年 3 月 17 日

#578 in 机器学习

Download history 40/week @ 2024-03-30 13/week @ 2024-04-06

每月 65 次下载

MIT 许可证

35KB
577

bosonnlp-rs

Build Status Coverage Status Crates.io docs.rs

BosonNLP SDK for Rust

安装

将其添加到您的 Cargo.toml

[dependencies]
bosonnlp = "0.10"

在您的 crate 根目录中添加 extern crate bosonnlp,然后就可以开始了!

构建

$ cargo build --release

测试

首先您需要导出一个名为 BOSON_API_TOKEN 的 shell 变量,然后运行

$ cargo test

许可证

此作品根据 MIT 许可证发布。许可证副本可在 LICENSE 文件中找到。


lib.rs:

BosonNLP SDK for Rust

安装

Cargo.toml 中添加以下内容

[dependencies]
bosonnlp = "0.10"

使用教程

API Token 申请请访问 http://bosonnlp.com

extern crate bosonnlp;

use bosonnlp::BosonNLP;

fn main() {
    let nlp = BosonNLP::new(env!("BOSON_API_TOKEN"));
    let rs = nlp.sentiment(&["这家味道还不错"], "food").unwrap();
    assert_eq!(1, rs.len());
}

您可以在 BosonNLP 文档网站 阅读详细的 BosonNLP REST API 文档。

依赖项

~5–20MB
~282K SLoC