5个版本
0.3.3 | 2021年5月5日 |
---|---|
0.3.2 | 2021年4月20日 |
0.3.1 | 2021年3月10日 |
0.3.0 | 2021年2月26日 |
0.1.0 |
|
#52 in #torrent
每月下载量154次
用于 2 crates
11KB
155 行
种子搜索
用法
要搜索种子,只需使用 search_l337x
函数
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());
}
}
这将返回 Result<Vec<TorrentSearchResult>, TorrentSearchError>
,解包后给出一个 TorrentSearchResults 的向量。
更多有关结构体数据类型的信息,请参阅此处
lib.rs
:
用法
要搜索种子,只需使用 search_l337x 函数
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());
}
}
这将返回 Result<Vec<TorrentSearchResult>, TorrentSearchError>
,解包后给出一个 TorrentSearchResults 的向量。
依赖项
~6–19MB
~275K SLoC