1 unstable release

0.0.1 Apr 5, 2024

#20 in #tv

Download history 125/week @ 2024-04-04 3/week @ 2024-04-11

128 downloads per month

Custom license

17KB
203 lines

yelp-fusion-rs

Version Docs License

A Rust library for the medal.tv REST 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 you 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
    • Lints the codebase via cargo fmt.
  • make test
    • Tests the codebase via:
      • cargo fmt
      • cargo check
      • cargo clippy (with insanely strict defaults)
      • cargo test.

Credits

Made with 🤬 and 🥲 by Todd Everett Griffin.

medal-tv-rs is open source under the MIT License.

Dependencies

~12–26MB
~366K SLoC