5 个版本
0.1.4 | 2018年11月5日 |
---|---|
0.1.3 | 2018年11月4日 |
0.1.2 | 2018年11月3日 |
0.1.1 | 2018年11月3日 |
0.1.0 | 2018年11月3日 |
11 in #google-search
6KB
84 行代码(不含注释)
google-somethin
一个简单的库,可以抓取 Google 搜索结果...
使用方法
在 Cargo.toml
中插入以下内容
[dependencies]
google-somethin = "0.1"
并在你的主文件中插入以下内容
extern crate google_somethin;
基本使用
首先按照以下示例导入 crate 和方法。
extern crate google_somethin;
use google_somethin::google;
现在查询!
let results = google("roblox", None);
// Should return results of links and titles.
println!("Roblox results! {:?}", results);
注意事项
仅为确认:对于那些想知道的人,Section
只是一个具有 title
和 link
键的 struct
。
Section {
title: String,
link: String,
}
基本上就是这些了!
依赖项
~22MB
~467K SLoC