| Crates.io | neocurl |
| lib.rs | neocurl |
| version | 2.0.4 |
| created_at | 2025-05-18 15:27:42.850073+00 |
| updated_at | 2025-10-15 05:03:31.102387+00 |
| description | A command line tool to test servers |
| homepage | https://github.com/LeviLovie/neocurl |
| repository | https://github.com/LeviLovie/neocurl |
| max_upload_size | |
| id | 1678732 |
| size | 139,093 |
A command line tool to test servers.
Read the book for quick start and guide.
import neocurl as nc
@nc.define
def get(client):
response = client.get("https://httpbin.org/get")
nc.info(f"Response status: {response.status}, finished in {response.duration:.2f}ms")
assert response.status_code == 200, f"Expected status code 200, but got {response.status_code} ({response.status})"
response.print()