Python Client - Overview
Let's build a Producer/Consumer with Python but first let's setup Python env
Check Python installation
$ python3 --versionCreate virtualenv
# Choose your path accordingly to your local clone of the repo
python3 -m venv /path/to/new/virtual/environmentActivate your virtualenv
source [virtualenv_path]/bin/activateLet's install the required libraries
Go to the producer-consumer folder
Install the required libraries
Last updated