Skip to content

Latest commit

 

History

History
19 lines (14 loc) · 563 Bytes

README.md

File metadata and controls

19 lines (14 loc) · 563 Bytes

ToDo API client

This is a utility script to simulate requests to the ToDo API. It will perform a variety of GET, POST, and DELETE requests to different endpoints.

It takes a single argument, which is the URL of the ToDo API. This URL can be obtained using minikube service as shown below.

It is recommended that you use a virtualenv to run this application:

python3 -m venv client
source client/bin/activate
pip install -r requirements.txt

python client.py $(minikube service demo-prom-demo --url)