Crates.io | tame-webpurify |
lib.rs | tame-webpurify |
version | 0.1.2 |
source | src |
created_at | 2023-04-21 14:38:06.079306 |
updated_at | 2023-05-31 14:49:48.925644 |
description | Simple Rust client for the WebPurify REST API |
homepage | https://github.com/EmbarkStudios/tame-webpurify |
repository | https://github.com/EmbarkStudios/tame-webpurify |
max_upload_size | |
id | 845355 |
size | 84,662 |
An incredibly small library to interact with the https://www.webpurify.com/documentation/ REST API.
tame-webpurify
takes the sans-io approach and builds up the request objects for you so that you can use whatever library you're used to for the actual HTTP transport.
Please be advised that the source code will contain some swearing etc. Can't test a profanity filter / content-moderation API without actually acting like a jerk.
See the example code on how to use it tame-webpurify
together with reqwest
Build and run the provided example:
$ cargo run --example profanity -- --apikey <your-webpurify-api-key>
=>
{
status: 200,
version: HTTP/2.0,
headers: { ... },
body: {
"rsp": {
"@attributes": {
"stat": "ok",
"rsp": "0.062274932861328"
},
"method": "webpurify.live.replace",
"format": "rest",
"found": "3",
"text": "**** you man! call me at +**********3 or email me at ****.****@*******.***",
"api_key": "some-api-key"
}
}
}
The following WebPurify methods are currently available:
pub enum Method {
/// webpurify.live.check
Check,
/// webpurify.live.check
Replace(String),
}
We welcome community contributions to this project.
Please read our Contributor Guide for more information on how to get started. Please also read our Contributor Terms before you make any contributions.
Any contribution intentionally submitted for inclusion in an Embark Studios project, shall comply with the Rust standard licensing model (MIT OR Apache 2.0) and therefore be dual licensed as described below, without any additional terms or conditions:
This contribution is dual licensed under EITHER OF
at your option.
For clarity, "your" refers to Embark or any other licensee/user of the contribution.