Crates.io | torrent_search |
lib.rs | torrent_search |
version | 0.3.3 |
source | src |
created_at | 2021-02-19 16:24:57.604685 |
updated_at | 2021-05-05 14:34:44.719991 |
description | An unofficial torrent searching library in Rust |
homepage | https://github.com/billyb2/torrent-search-rs |
repository | https://github.com/billyb2/torrent-search-rs |
max_upload_size | |
id | 357649 |
size | 15,533 |
To search for a torrent, simply use the search_l337x
function
use torrent_search::{search_l337x, TorrentSearchResult, TorrentSearchError};
#[tokio::main]
async fn main() {
let debian_search_results = search_l337x("Debian ISO".to_string()).await.unwrap();
for result in debian_search_results {
println!("Name of torrent: {}\nMagnet: {}\nSeeders: {}\nLeeches: {}", result.name, result.magnet.unwrap(), result.seeders.unwrap(), result.leeches.unwrap());
}
}
This will return Result<Vec<TorrentSearchResult>, TorrentSearchError>
, which when unwrapped
gives a Vector of TorrentSearchResults.
You can view more information about the data types of the structs here