11 releases

0.0.11 Feb 27, 2024
0.0.10 Feb 25, 2024
0.0.3 Jan 6, 2024

#76 in Video

46 downloads per month

Custom license

115KB
2.5K SLoC

consumet.rs

consumet.rs is a crates.io library which provides high-level APIs to get information about several entertainment mediums like books, movies, comics, anime, manga, etc.

Clippy Test GitHub Official Discord

Table of Contents

Quick Start

Installation

To use consumet.rs in your project, run:

cargo install consumet

Usage

Example - searching for a movie using the flixhq provider.

use consumet::providers::movies;

#[tokio::main]
async fn main() -> anyhow::Result<()> {
    // Create a new instance of the FlixHQ provider
    let flixhq = movies::FlixHQ;

    // Search for a movie. In this case, "Vincenzo"
    let data = flixhq.search("Vincenzo", None).await?;
    println!("{:#?}", data);

    Ok(())
}

Do you want to know more? Head to the Getting Started.

Documentation

Ecosystem

Support

You can contact the maintainer of consumet.rs via email, or join the official discord server (Recommended).

Contributors

Checkout the original consumet.ts

Credits to the beautiful people who wrote the original consumet.ts

License

Licensed under GPL-3.0.

Dependencies

~12–27MB
~423K SLoC