Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/helloimalemur/rate-limit-testing


https://github.com/helloimalemur/rate-limit-testing

Last synced: 5 days ago
JSON representation

Awesome Lists containing this project

README

        

# rate-limit-testing

## Install
```shell
$ cargo install rate-limit-testing
```

### GET request
```shell
$ rate-limit-testing -u -d
```

### POST request (automatically uses POST if payload/post_data is provided)
```shell
$ rate-limit-testing -u -d -p "the body"
```

### Headers
```shell
$ rate-limit-testing -u -d -p "the body" -a "HEADER1: value, HEADER2: value"
```

## Note;
#### A delay greater than 100 will be assumed to be in milliseconds
#### Delay less than 100 will be assumed as seconds

## Development and Collaboration
#### Feel free to open a pull request, please run the following prior to your submission please!
echo "Run clippy"; cargo clippy -- -D clippy::all
echo "Format source code"; cargo fmt -- --check