From 588531258a6d27c5ec542090a4baf6169731435a Mon Sep 17 00:00:00 2001 From: Carl Johnson Date: Mon, 26 Jul 2021 14:44:06 -0400 Subject: [PATCH] README: Add requests: HTTP requests for Gophers --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index f0fcd715..be60f34c 100644 --- a/README.md +++ b/README.md @@ -1492,6 +1492,7 @@ _**Unofficial** set of patterns for structuring projects._ * [httpretry](https://github.com/ybbus/httpretry) - Enriches the default go HTTP client with retry functionality. * [pester](https://github.com/sethgrid/pester) - Go HTTP client calls with retries, backoff, and concurrency. * [request](https://github.com/monaco-io/request) - HTTP client for golang. If you have experience about axios or requests, you will love it. No 3rd dependency. +* [requests](https://github.com/carlmjohnson/requests) - HTTP requests for Gophers. It uses context.Context and doesn't hide the underlying net/http.Client, so it is compatible with standard Go APIs. * [resty](https://github.com/go-resty/resty) - Simple HTTP and REST client for Go inspired by Ruby rest-client. * [rq](https://github.com/ddo/rq) - A nicer interface for golang stdlib HTTP client. * [sling](https://github.com/dghubble/sling) - Sling is a Go HTTP client library for creating and sending API requests.