toml
reqwest = "0.11.18"
tokio = { version = "1.29.1", features = ["full"] }
To use the FlixHQ
crate, you can follow this example:
```rust use pipebombextensionsrs::models::movieparser::MovieParser; use pipebombextensions_rs::providers::movies;
async fn main() -> anyhow::Result<()> { println!( "{:#?}", movies::FlixHQ.search("hi".to_owned(), Some(1)).await? );
Ok(())
}
``
The
movies::FlixHQ.searchfunction is used to search for movies with the example search query
"hi"and an optional page number
1`. Then results are printed using the println! macro.
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.