Posting

A Python Application for Testing APIs

Be sure you install python3-pip and python3-venv.

sudo apt install python3-pip python3-venv

Create a folder to install Python applications

mkdir pyvenv

Prepare enviroment to install Python packages

python3 -m venv pyvenv

Activate enviroment

source ~/pyenv/bin/activate

Install package: In this case “Posting”

pip3 install posting

Open this application that is super intuitive and test any HTTP request against any API.

posting 

Enjoy!

I really like this project!