A minimal cli tool to make http requests. With uget, you can:
You want, you get!

cargo install uget
uget <url> <body> [OPTIONS]
uget https://example.com
echo "{title: 'foo', body: 'bar', userId: 1}" | uget https://example.com
uget https://example.com --field "title=foo" --field "body=bar" --field "userId=1"
uget https://example.com -m POST --header "Content-Type: application/json" "{ title: 'foo', body: 'bar', userId: 1 }"
uget https://example.com/users/1 -m DELETE --bearer <token>
uget https://example.com -m POST --basic <username>:<password>
MIT
Rogerio Pereira Araujo rogerio.araujo@gmail.com