All Projects → nojima → Httpie Go

nojima / Httpie Go

Licence: mit
httpie-like HTTP client written in Go

Programming Languages

go
31211 projects - #10 most used programming language

Projects that are alternatives of or similar to Httpie Go

Pipedrive
Complete Pipedrive API client for PHP
Stars: ✭ 138 (-14.81%)
Mutual labels:  client
Rolisteam
Rolisteam is a virtual tabletop. It helps you to manage tabletop role playing games with remote friends/players. It provides many features to share maps, pictures, dice roller, manage background music and much more. The main git repository is available here: [https://invent.kde.org/kde/rolisteam].
Stars: ✭ 151 (-6.79%)
Mutual labels:  client
Potatso
Potatso is an iOS client that implements Shadowsocks proxy with the leverage of NetworkExtension framework. ***This project is unmaintained, try taking a look at this fork https://github.com/shadowcoel/shadowcoel instead.
Stars: ✭ 1,925 (+1088.27%)
Mutual labels:  client
Graphlient
Ruby GraphQL Client
Stars: ✭ 142 (-12.35%)
Mutual labels:  client
Elasticsearch Ruby
Ruby integrations for Elasticsearch
Stars: ✭ 1,848 (+1040.74%)
Mutual labels:  client
Correios
A client library for Brazilian Correios APIs and services (SIGEP & SRO).
Stars: ✭ 153 (-5.56%)
Mutual labels:  client
Python Twitch Client
Python wrapper for Twitch API
Stars: ✭ 137 (-15.43%)
Mutual labels:  client
Mollie Api Node
Official Mollie API client for Node
Stars: ✭ 158 (-2.47%)
Mutual labels:  client
Dhcpcd
DHCP / IPv4LL / IPv6RA / DHCPv6 client.
Stars: ✭ 148 (-8.64%)
Mutual labels:  client
Gophertunnel
Toolbox for Minecraft software written in Go
Stars: ✭ 156 (-3.7%)
Mutual labels:  client
Http Client
Http client that handles retries, logging & dynamic headers.
Stars: ✭ 144 (-11.11%)
Mutual labels:  client
Yang
The efficient and elegant, PSR-7 compliant JSON:API 1.1 client library for PHP
Stars: ✭ 148 (-8.64%)
Mutual labels:  client
Applemusicultra
Music Client for macOS. Upgrade your music experience with themes, styles, custom scripting and more. Uses WebKit and JavaScript.
Stars: ✭ 155 (-4.32%)
Mutual labels:  client
Faunadb Go
Go driver for FaunaDB
Stars: ✭ 140 (-13.58%)
Mutual labels:  client
Json Api Client
A PHP package for mapping remote {json:api} resources to Eloquent like models and collections.
Stars: ✭ 159 (-1.85%)
Mutual labels:  client
Microsoft Todo Mac
🐜 Microsoft-ToDo macOS App. 微软Todo mac客户端.
Stars: ✭ 138 (-14.81%)
Mutual labels:  client
Deeply
PHP client for the DeepL.com translation API (unofficial)
Stars: ✭ 152 (-6.17%)
Mutual labels:  client
Restrequest4delphi
API to consume REST services written in any programming language with support to Lazarus and Delphi
Stars: ✭ 162 (+0%)
Mutual labels:  client
Ratelimiter
C# rate limiting utility
Stars: ✭ 159 (-1.85%)
Mutual labels:  client
Tryton
Mirror of Tryton Client
Stars: ✭ 156 (-3.7%)
Mutual labels:  client

httpie-go

CircleCI

httpie-go screenshot

httpie-go (ht) is a user-friendly HTTP client CLI. Requests can be issued with fewer types compared to curl. Responses are displayed with syntax highlighting.

httpie-go is a clone of httpie. Since httpie-go is written in Go, it is a single binary and does not require a heavy runtime.

Examples

This example sends a GET request to http://httpbin.org/get.

$ ht GET httpbin.org/get

The second example sends a POST request with JSON body {"hello": "world", "foo": "bar"}.

$ ht POST httpbin.org/post hello=world foo=bar

You can see the request that is being sent with -v option.

$ ht -v POST httpbin.org/post hello=world foo=bar

Request HTTP headers can be specified in the form of key:value.

$ ht -v POST httpbin.org/post X-Foo:foobar

Disable TLS verification.

$ ht --verify=no https://httpbin.org/get

Download a file.

$ ht --download <any url you want>

Documents

Although httpie-go does not currently have documents, you can refer to the original httpie's documentation since httpie-go is a clone of httpie. Note that some minor options are yet to be implemented in httpie-go.

How to build

make

For non-standard Linux system like Android termux, use following method to avoid the DNS issue.

make build-termux
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].