mediathekviewweb

Crates.iomediathekviewweb
lib.rsmediathekviewweb
version0.4.0
sourcesrc
created_at2023-10-03 20:54:54.772849
updated_at2024-07-22 18:02:23.446523
descriptionClient for the MediathekViewWeb API
homepage
repositoryhttps://github.com/d-k-bo/mediathekviewweb-rs
max_upload_size
id991544
size66,247
David C. (d-k-bo)

documentation

README

mediathekviewweb-rs

Build Status Crates.io Documentation License: MIT

A client library for interacting with the MediathekViewWeb API.

Example

let results = mediathekviewweb::Mediathek::new(USER_AGENT)?
    .query([mediathekviewweb::models::QueryField::Topic], "tagesschau")
    .query(
        [mediathekviewweb::models::QueryField::Title],
        "tagesschau 20.00 Uhr",
    )
    .duration_min(std::time::Duration::from_secs(10 * 60))
    .duration_max(std::time::Duration::from_secs(30 * 60))
    .include_future(false)
    .sort_by(mediathekviewweb::models::SortField::Timestamp)
    .sort_order(mediathekviewweb::models::SortOrder::Descending)
    .size(2)
    .offset(3)
    .await?;

println!("{results:#?}");
Results in something like

License

This project is licensed under the MIT License.

See LICENSE for more information.

Commit count: 19

cargo fmt