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

#2585 in Parser implementations

Download history 32/week @ 2024-12-10 6/week @ 2024-12-17 3/week @ 2025-01-28 1/week @ 2025-02-04 11/week @ 2025-02-11 4/week @ 2025-02-18 17/week @ 2025-02-25 16/week @ 2025-03-04 60/week @ 2025-03-11

78 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

Dependencies

~6–20MB
~271K SLoC