Usage

Cargo.toml

toml reqwest = "0.11.18" tokio = { version = "1.29.1", features = ["full"] }

Movies

Flixhq

To use the FlixHQ crate, you can follow this example:

```rust use consumetapirs::models::movieparser::MovieParser; use consumetapi_rs::providers::movies;

[tokio::main]

async fn main() -> anyhow::Result<()> { println!( "{:#?}", movies::FlixHQ.search("hi".to_owned(), Some(1)).await? );

Ok(())

} `` Themovies::FlixHQ.searchfunction is used to search for movies with the example search query"hi"and an optional page number1`. Then results are printed using the println! macro.

TODO

Please note that currently, only the searching functionality for the flixhq movie provider is available. Additional functionality, such as retrieving detailed movie information or accessing other providers, will be added in future updates.