medal-tv-rs

Crates.iomedal-tv-rs
lib.rsmedal-tv-rs
version0.0.2
sourcesrc
created_at2024-04-05 06:16:49.112131
updated_at2024-09-27 05:24:59.019886
descriptionA Rust library for the medal.tv REST API.
homepagehttps://www.toddgriffin.me/
repositoryhttps://github.com/goddtriffin/medal-tv-rs
max_upload_size
id1197049
size54,506
Todd Griffin (goddtriffin)

documentation

README

yelp-fusion-rs

Version Docs

A Rust library for the medal.tv API.

Features

Examples

Query every clip you've ever recorded!

MEDAL_TV_API_KEY=<api_key> MEDAL_TV_USER_ID=<user-id> cargo run --example get_all_clips

#[tokio::main]
async fn main() -> Result<(), MedalError> {
    let medal_tv_api_key: String = env::var("MEDAL_TV_API_KEY").expect("no medal.tv API key");
    let medal_tv_user_id: String = env::var("MEDAL_TV_USER_ID").expect("no medal.tv user ID");

    let medal_client: MedalClient = MedalClient::new(medal_tv_api_key, None);
    let latest_payload: LatestPayload = LatestPayload::builder().user_id(medal_tv_user_id).build();
    let latest_response: LatestResponse = medal_client.latest(&latest_payload).await?;

    println!("{}", serde_json::to_string(&latest_response).unwrap());
    Ok(())
}

For more examples, check out the examples directory.

Developers

Project is under active maintenance - even if there are no recent commits! Please submit an issue / bug request if the library needs updating for any reason!

Feature Requests

Implement the rest of the API endpoints.

Currently, I only have a use-case for medal.tv API's /v1/latest endpoint, so I haven't prioritized developing the rest of endpoints.

I fully intend to implement all of those features so that this library can do everything the medal.tv API allows.

If you have a dire need for any of those endpoints, please ping me via an issue on GitHub and I'll know to prioritize that work. If you're feeling extra adventurous and/or REALLY need those endpoints implemented, please send a pull request :)

Commands

  • make lint
  • make test
  • make fix

Credits

Made with 🤬 and 🥲 by Todd Everett Griffin.

Commit count: 8

cargo fmt