Repository Details
Shared by


HelloGitHub Rating
0 ratings
Free•MPL-2.0
Claim
Discuss
Collect
Share
103
Stars
No
Chinese
Go
Language
No
Active
1
Contributors
0
Issues
No
Organization
0.3.1
Latest
18
Forks
MPL-2.0
License
More
一个易用的 HTTP Request 包。它封装了 Go 的 HTTP 标准库,提供了简洁优雅的 API。可以更轻松的发送HTTP 请求,解决了 Go 标准库自定义 HTTP 请求,操作 headers、cookies 时繁琐的步骤。类似于 Python 的 Requests 和 urllib 的区别。示例代码:
```go
resp, err := nic.Get("http://example.com", nil)
if err != nil {
log.Fatal(err.Error())
}
fmt.Println(resp.Text)
```
Included in:
Vol.38
Comments
Rating:
No comments yet