ytdown 0.2.0

A Rust library mirroring yt-dlp's core: extract, select, and download media. Library only — no CLI.
Documentation
1
2
3
4
5
6
7
8
.PHONY: build test lint fmt fmt-check doc check
build: ; cargo build --all-features
test: ; cargo test --all-features
lint: ; cargo clippy --all-targets --all-features -- -D warnings
fmt: ; cargo fmt --all
fmt-check: ; cargo fmt --all -- --check
doc: ; cargo doc --no-deps --all-features
check: fmt-check lint test