Python implementation of KillrVideo service layer. Requires Python 3.
Install:
git clone <>cd killrvideo-pythonDependencies:
venv to create a Python virtual environment, which leverages the contents of requirements.txt to install the required Python libraries
python3 -m venv venvsource venv/bin/activatepip install commands in Dockerfile.Running Python services in Docker:
scripts/docker-build.shdocker-compose up -d(Alternate) Running the Python Services on the host (not in docker):
scripts/run-docker-backend-exernal.shscripts/docker-compose-backend-external.yaml, which references the environment variable KILLRVIDEO_BACKEND. The script sets this to the host IP.KILLRVIDEO_DSE_CONTACT_POINTS and KILLRVIDEO_KAFKA_BOOTSTRAP_SERVERS to point to localhost (127.0.0.1)python killrvideo/__init__.pyscripts/stop-docker-backend-external.shFor more advanced Docker configuration options including metrics, volume storage and OpsCenter, see the killrvideo-docker-common repository.