Run .http files (VS Code REST Client format) from the command line. Zero dependencies — a tiny, unbloated alternative to Postman.
Project description
runhttp
Run .http files from the command line. You already have .http files —
the ones VS Code's REST Client extension runs. runhttp runs the same files
in your terminal and in CI. Zero dependencies, no Electron, no account, no
config.
# api.http
@base = https://api.example.com
@token = {{$env API_TOKEN}}
### Get the current user
GET {{base}}/me
Authorization: Bearer {{token}}
Accept: application/json
runhttp api.http
GET https://api.example.com/me # Get the current user
200 OK · 142ms · application/json · 318 B
{
"id": 7,
"name": "Ada Lovelace"
}
Why
You want to fire off a saved HTTP request and see the response. The options:
- Postman / Insomnia — a whole GUI app and an account, to send one GET.
- Hurl is great, but uses its own
.hurlformat — your existing VS Code.httpfiles don't run in it. - httpyac runs
.httpfiles but pulls in dozens of dependencies. - curl works, but now you're translating a clean
.httpfile into a wall of-Hflags every time.
runhttp runs the .http files you already keep next to your code. Pure
standard library — pipx/npx and go.
Usage
runhttp api.http # run every request in order
runhttp api.http -n 2 # run only request #2 (1-based)
runhttp api.http --name login # run the request titled "### login"
runhttp api.http --list # list requests without sending
cat api.http | runhttp # read from stdin
| Option | |
|---|---|
-n, --request <n> |
run only the nth request |
--name <title> |
run the request with this ### title / # @name |
--list |
print requests, don't send |
--var k=v |
define/override a variable (repeatable) |
-i, --include |
print response headers |
--json |
emit results as a JSON array (stdout) |
--no-follow |
don't follow redirects (default: follow, max 5) |
--insecure |
skip TLS verification |
--timeout <sec> |
per-request timeout (default 30) |
Variables
@base = https://api.example.com # file variable
GET {{base}}/users # {{name}} to use it
Authorization: Bearer {{$env TOKEN}} # {{$env NAME}} reads the environment
Override or supply any variable from the command line with --var name=value.
An undefined variable is an error — a typo never gets silently sent.
Exit codes
0 every request came back < 400
1 some request returned an HTTP status >= 400
2 parse error, connection failure, or bad usage
runhttp smoke.http && echo "all endpoints healthy"
Scope (on purpose)
Supports the everyday .http: @variables, {{vars}} / {{$env}}, request
titles, headers, request bodies, multiple requests per file, and redirect
following. It does not do gRPC/WebSocket/GraphQL transports or response
assertions — if you need those, reach for httpyac or Hurl. runhttp is the
small, dependency-free one for the 90% case.
Install
pip install runhttp # Python >= 3.8
npx runhttp api.http # Node >= 18 (byte-for-byte port)
- PyPI: https://pypi.org/project/runhttp/
- npm: https://www.npmjs.com/package/runhttp
- GitHub: https://github.com/jjdoor/runhttp-py · runhttp (Node)
License
MIT
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file runhttp-0.1.0.tar.gz.
File metadata
- Download URL: runhttp-0.1.0.tar.gz
- Upload date:
- Size: 12.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1f26e19e280bd9ddcf0dfc66b1618316e94f9c2c5a118c58b8d2659cd0ba8fd3
|
|
| MD5 |
b852704bd1d2daea1ae7f1f5ee3d6d34
|
|
| BLAKE2b-256 |
ee534cd2069d7ac0795ac69a968faf58166ac94f56e19cfe46dafc3fbdbf4c0e
|
File details
Details for the file runhttp-0.1.0-py3-none-any.whl.
File metadata
- Download URL: runhttp-0.1.0-py3-none-any.whl
- Upload date:
- Size: 10.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e34b6ae25dec2d1364c0bb715ed07b7dd05c7e730987a77a5862d064d0ab2c34
|
|
| MD5 |
0b3a74542fa8a2ee60f917130f9003c6
|
|
| BLAKE2b-256 |
7f6059ec8eb76771f6340e22a5580b8790ae79c0ac7c537b87852f8b4939ad61
|