ytranscript 0.1.0

ytranscript is a rust crate that provides functionality to fetch YouTube video transcripts.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/// The `errors` module defines the error types for the `ytranscript` crate.
pub mod errors;

/// The `fetch` module provides the functionality to fetch YouTube transcripts.
pub mod fetch;

/// The `regex` module defines the regular expression patterns used in the `ytranscript` crate.
pub mod regex;

/// The `types` module defines the data structures used in the `ytranscript` crate.
pub mod types;

// Re-export the modules for easier access
pub use crate::errors::*;
pub use crate::fetch::*;
pub use crate::regex::*;
pub use crate::types::*;