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 |
|
#52 in #torrent
154 downloads per month
Used in 2 crates
11KB
155 lines
Torrent Search
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–19MB
~275K SLoC