Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/helloimalemur/rate-limit-testing
https://github.com/helloimalemur/rate-limit-testing
Last synced: 5 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/helloimalemur/rate-limit-testing
- Owner: helloimalemur
- Created: 2023-07-06T18:24:02.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2024-05-21T16:09:26.000Z (6 months ago)
- Last Synced: 2024-10-21T01:34:28.678Z (26 days ago)
- Language: Rust
- Size: 86.9 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
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