5 releases

0.3.3 May 5, 2021
0.3.2 Apr 20, 2021
0.3.1 Mar 10, 2021
0.3.0 Feb 26, 2021
0.1.0 Feb 19, 2021

#49 in #torrent

Download history 31/week @ 2023-11-26 84/week @ 2023-12-31 10/week @ 2024-01-28 14/week @ 2024-02-04 48/week @ 2024-02-25 13/week @ 2024-03-03

61 downloads per month
Used in 2 crates

MIT license

11KB
155 lines

Torrent Search

Build Status

Usage:

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


lib.rs:

Usage:

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

Dependencies

~6–20MB
~294K SLoC