yt-dlp 2.7.2

🎬️ A Rust library (with auto dependencies installation) for Youtube downloading
Documentation
1
2
3
4
5
6
7
8
//! Event delivery mechanisms.
//!
//! This module contains Rust hooks (feature: hooks) and HTTP webhooks (feature: webhooks).

#[cfg(feature = "hooks")]
pub mod hooks;
#[cfg(feature = "webhooks")]
pub mod webhooks;