{"id":20431459,"url":"https://github.com/devyatsu/rusty-dl","last_synced_at":"2026-04-27T17:32:50.892Z","repository":{"id":234330001,"uuid":"780162284","full_name":"DevYatsu/rusty-dl","owner":"DevYatsu","description":"Rust crate for downloading various content types like YouTube/Tweets videos and more.","archived":false,"fork":false,"pushed_at":"2024-04-21T17:50:57.000Z","size":45262,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-10-21T00:26:15.362Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/DevYatsu.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-03-31T21:40:21.000Z","updated_at":"2025-01-15T03:03:11.000Z","dependencies_parsed_at":"2024-04-19T22:39:02.919Z","dependency_job_id":"a33305fe-c442-403c-9af4-d0df1625ff1c","html_url":"https://github.com/DevYatsu/rusty-dl","commit_stats":null,"previous_names":["devyatsu/rusty-dl"],"tags_count":6,"template":false,"template_full_name":null,"purl":"pkg:github/DevYatsu/rusty-dl","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DevYatsu%2Frusty-dl","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DevYatsu%2Frusty-dl/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DevYatsu%2Frusty-dl/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DevYatsu%2Frusty-dl/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/DevYatsu","download_url":"https://codeload.github.com/DevYatsu/rusty-dl/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DevYatsu%2Frusty-dl/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32348048,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-27T17:12:42.749Z","status":"ssl_error","status_checked_at":"2026-04-27T17:12:41.658Z","response_time":128,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-15T08:11:55.761Z","updated_at":"2026-04-27T17:32:50.875Z","avatar_url":"https://github.com/DevYatsu.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# rusty_dl\n\n[![LICENSE](https://img.shields.io/badge/license-MIT-blue.svg)](LICENSE)\n[![crates.io Version](https://img.shields.io/crates/v/rusty_dl.svg)](https://crates.io/crates/rusty_dl)\n![Minimum rustc version](https://img.shields.io/badge/rustc-1.70.0+-lightgray.svg)\n\nRusty_dl is a versatile crate designed for effortlessly fetching a wide range of content types, including YouTube videos, tweet media (such as videos, images, and gifs), and eventually various other media directly from the web.\n\n## Features\n\n- Download YouTube videos\n- Download tweet media (videos, images, gifs)\n- Download other media from the web (through url fetching)\n\n## Todo\n\n### In the Library\n\n- [x] Add features to download content to specific directories\n- [x] Implement functions to retrieve metadata on downloaded media\n- [x] Allow users to specify whether spaces in file names should be replaced by underscores\n- [x] Add support for downloading images-only or videos-only from tweets\n- [x] Add support for downloading playlists on youtube (only the 100 videos coming first)\n- [x] Add examples\n\n### Other\n\n- [ ] Create a CLI for easy downloading from the terminal\n- [ ] Develop a desktop application (using Tauri ?)\n- [ ] Build a web application for downloading media from the browser\n\n## Get started\n\n- Add the crate to your project\n\n```bash\ncargo add rusty_dl\n```\n\n- Use the crate in a synchronous environment\n\n```rust\nuse rusty_dl::prelude::{Downloader, YoutubeDownloader, DownloadError};\n\nconst URL: \u0026str = \"my_yt_video_link\";\n\nfn main() -\u003e Result\u003c(), DownloadError\u003e  {\n    let downloader = YoutubeDownloader::new(URL);\n\n    downloader.blocking_download()\n}\n```\n\n- Use the crate in a tokio environment\n\n```rust\nuse rusty_dl::prelude::{Downloader, YoutubeDownloader, DownloadError};\n\nconst URL: \u0026str = \"my_yt_video_link\";\n\n#[tokio::main]\nasync fn main() -\u003e Result\u003c(), DownloadError\u003e {\n    let downloader = YoutubeDownloader::new(URL);\n\n    downloader.download().await\n}\n```\n\nThis crate also exports a TwitterDownloader and a ResourceDownloader which work the same way as presented up there.\n\nSee more in [examples directory](/examples/)\n\n## Contributing\n\nContributions are welcome! Feel free to open issues or submit pull requests to help improve this library.\n\n## License\n\nThis project is licensed under the [MIT License](./LICENSE).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdevyatsu%2Frusty-dl","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdevyatsu%2Frusty-dl","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdevyatsu%2Frusty-dl/lists"}