kodumaro-http-cli 0.3.0

Kodumaro HTTP CLI inspired by HTTPie <https://httpie.io/>
Documentation
kodumaro-http-cli-0.3.0 has been yanked.

Kodumaro HTTP CLI

Kodumaro HTTP CLI inspired by HTTPie.

Project status

It’s still a kinda-usable work in progress.

Installation

cargo +nightly install kodumaro-http-cli

Usage

Usage: http [OPTIONS] <COMMAND>

Commands:
  connect  performs a CONNECT request
  delete   performs a DELETE request
  get      performs a GET request
  head     performs a HEAD request
  option   performs a OPTION request
  patch    performs a PATCH request
  post     performs a POST request
  put      performs a PUT request
  trace    performs a TRACE request
  help     Print this message or the help of the given subcommand(s)

Options:
  -j, --json                           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
      --raw <RAW>                      allows you to pass raw request data without extra processing
  -o, --output <OUTPUT>                save output to file instead of stdout
  -d, --download                       do not print the response body to stdout; rather, download it and store it in a file
  -a, --auth <AUTH>                    basic authentication (user[:password]) or bearer token
  -F, --follow                         follows Location redirects
      --max-redirects <MAX_REDIRECTS>  when following redirects, max redirects [default: 30]
      --verify <VERIFY>                set to "no" (or "false") to skip checking the host's SSL certificate [default: yes]
  -v, --verbose                        Show headers
  -h, --help                           Print help (same as help command)
  -V, --version                        Print version

Known bugs

Just like old BSD CLI tools, it requires options to be BEFORE commands.