| Crates.io | wyzie-subs |
| lib.rs | wyzie-subs |
| version | 0.1.0 |
| created_at | 2025-11-14 16:20:26.286154+00 |
| updated_at | 2025-11-14 16:20:26.286154+00 |
| description | Async Wyzie Subs client using reqwest |
| homepage | |
| repository | https://github.com/TymekV/wyzie-subs |
| max_upload_size | |
| id | 1933119 |
| size | 59,222 |
A client for downloading subtitles from sub.wyzie.ru.
utoipa-impl - Implements ToSchema on data structuresschemars-impl - Implements JsonSchema on data structuresAdd this to your Cargo.toml:
// Build a default client
let wyzie = WyzieClient::default();
// Or configure it
let wyzie = WyzieClient::builder()
.base_url(Url::parse("https://sub.wyzie.ru")?)
.reqwest_client(Client::new())
.build();
// Search for subtitles
let params = SearchParams::builder()
.id("93740".to_string())
.season(1)
.episode(1)
.build();
let subtitles = wyzie.search(¶ms).await?;
Licensed under either of