Kinesis is a AWS Service for processing streaming data.
Create a virtual environment(venv) in your project directory using the command
virtualenv venv
if virtual environment is not installed in your system, install virtual env using the command
pip3 install virtualenv
and then create a virtual env for your project
activate the virtual environment, using command
source venv/bin/activate
Install all the requirements mentioned in requirments.txt file using command
pip install -r requirments.txt