Yet another HTTPie clone in Rust.
sh
cargo install ht
NB: Make sure that you have Rust 1.46 or later installed.
``` ht 0.3.0 USAGE: ht.exe [FLAGS] [OPTIONS] <[METHOD] URL> [REQUEST_ITEM]...
FLAGS: --offline Construct HTTP requests without sending them anywhere -j, --json (default) Data items from the command line are serialized as a JSON object -f, --form Data items from the command line are serialized as form fields -m, --multipart Similar to --form, but always sends a multipart/form-data request (i.e., even without files) -I, --ignore-stdin Do not attempt to read stdin -d, --download -c, --continue Resume an interrupted download -v, --verbose Print the whole request as well as the response -q, --quiet Do not print to stdout or stderr -h, --help Prints help information -V, --version Prints version information
OPTIONS:
-A, --auth-type
ARGS:
<[METHOD] URL> The request URL, preceded by an optional HTTP method
```sh
ht httpbin.org/json
ht httpbin.org/post name=ahmed age:=24
ht put httpbin.org/put id:=49 age:=25 | less
ht -d httpbin.org/json -o res.json ```