Metadata-Version: 2.1
Name: ayonix
Version: 0.2.2
Summary: A modern CLI program for API testing
Home-page: https://github.com/Silicon27/call
Author: Silicon27
Author-email: yangsilicon@gmail.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: requests

# Ayonix

A CLI program for API testing.

## Features

- Send HTTP requests to specified URLs
- Supports GET, POST, PUT, DELETE, and other HTTP methods
- Include headers and data in requests
- Measure and display response time
- Calculate average response time over multiple requests
- Display response status code, headers, and content

## Installation

You can install the package using `pip`:
```bash
pip install ayonix
```

## Usage

The usage name for Ayonix is `call`:
```bash
call "https://jsonplaceholder.typicode.com/posts" --method POST -H '{"Content-Type": "application/json"}' -d '{"title": "foo", "body": "bar", "userId": 1}'
```
