kodik-parser 3.0.1

Rust library for parsing direct links from Kodik
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! # Kodik Parser library.
//! `kodik-parser` for getting direct links to files from Kodik.

#[cfg(test)]
#[allow(clippy::unwrap_used, clippy::expect_used, clippy::indexing_slicing)]
mod tests;

pub(crate) mod decoder;
pub(crate) mod parser;
pub(crate) mod scraper;
pub(crate) mod state;

pub use parser::parse;
pub use scraper::{Link, Links, Response};
pub use state::KODIK_STATE;

pub extern crate reqwest;