「勾勾」是一个搜索工具,搜索结果基于谷歌搜索,致力于「安全、简洁」的搜索体验。
实例列表
强烈感谢webbillion同学的域名服务
如何使用
本程序通过
网页
、命令行
和Web API
三种方式提供服务。
1 网页
示例:
2 命令行
请到Release页面下载可执行程序,并重命名为
gogo-cli
,放置到PATH
路径下
$ gogo-cli github 1
截图如下:
3 API
搜索
$ curl -X GET -k "http://localhost:4998/api/search?q=github&p=1"
{
"result": [
{
"name": "The world's leading software development platform · GitHub",
"url": "https://github.com/",
"desc": "GitHub brings together the world's largest community of developers to discover, share, and build better software. From open source projects to private team ..."
}
],
"error": null
}
关键词提示
$ curl -X GET -k "http://localhost:4998/api/lint?q=github"
{
"result": [
"github",
"github<b> desktop</b>",
"github<b> stock</b>",
"github<b> microsoft</b>",
"github<b> pages</b>",
"github<b> api</b>",
"github<b> tutorial</b>",
"github<b> login</b>",
"github<b> markdown</b>",
"github<b> gist</b>"
],
"error": null
}
上手
从源代码构建
$ git clone https://github.com/zenuo/gogo.git
$ cd gogo/gogo-server
$ cargo build -rv
$ ./target/release/gogo-server config
参考
from