dlsite-rs

This is a library to get information about products on DLsite. Some information is not available on the HTML page, so this library also makes requests to the AJAX API.

NOTE: This library is still wip, and the API may change. Also, only the parts I needed are implemented, so there are many unimplemented parts.

Features

Example

```rust use dlsite::{DlsiteClient, product::Product}; use tokio;

[tokio::main]

async fn main() { let client = DlsiteClient::default(); let product = client.getproductapi("RJ01014447").await.unwrap(); asserteq!(product.creators.unwrap().voiceby.unwrap()[0].name, "佐倉綾音"); } ```

```rust use dlsite::{DlsiteClient, product::Product, search::options::*}; use tokio;

[tokio::main]

async fn main() { let client = DlsiteClient::default(); let product = client .searchproduct(&ProductSearchOptions { sexcategory: Some(vec![SexCategory::Male]), keyword: Some("ASMR".to_string()), ..Default::default() }) .await .expect("Failed to search"); dbg!(&product); } ```