Expand description
A Rust library for interacting with ShindanMaker.
This library provides functionality to interact with various ShindanMaker domains, submit shindans, and parse results.
- Asynchronous API (Tokio)
- Multi-domain support (JP, EN, CN, KR, TH)
- Easy shindan submission and result parsing
§Example
§Get title
use shindan_maker::{ShindanClient, ShindanDomain};
#[tokio::main]
async fn main() {
let client = ShindanClient::new(ShindanDomain::En).unwrap();
let title = client
.get_title("1222992")
.await
.unwrap();
assert_eq!("Fantasy Stats", title);
}§Get segments (need “segments” feature)
use shindan_maker::{ShindanClient, ShindanDomain};
#[tokio::main]
async fn main() {
let client = ShindanClient::new(ShindanDomain::En).unwrap();
let (segments, title) = client
.get_segments_with_title("1222992", "test_user")
.await
.unwrap();
assert_eq!("Fantasy Stats", title);
println!("Result title: {}", title);
println!("Result text: {}", segments);
println!("Result segments: {:#?}", segments);
}§Get HTML string (need “html” feature)
- HTML string to image: cdp-html-shot.
use shindan_maker::{ShindanClient, ShindanDomain};
#[tokio::main]
async fn main() {
let client = ShindanClient::new(ShindanDomain::En).unwrap();
let (_html_str, title) = client
.get_html_str_with_title("1222992", "test_user")
.await
.unwrap();
assert_eq!("Fantasy Stats", title);
}Structs§
- A segment of a shindan result.
- A client for interacting with ShindanMaker.
Enums§
- A domain of ShindanMaker.