Python client for Aerospike Vector Search Database
- Python 3.9 or higher
- pip version 9.0.1 or higher
- Aerospike Vector Search DB and Aerospike clusters running.
To resolve the client packages using pip, add the following to $HOME/.pip/pip.conf
[global]
extra-index-url=https://<jfrog-username>:<jfrog-access-token>@aerospike.jfrog.io/artifactory/api/pypi/ecosystem-python-dev-local/simple
python3 -m pip install aerospike-vector-search
Or
You can add the package name aerospike-vector-search
to your application's requirements.txt
and install all dependencies using
python3 -m pip install -r requirements.txt
This is the recommended mode for building the python client.
# Create virtual environment to isolate dependencies.
python3 -m venv .venv
source .venv/bin/activate
python3 -m pip install -vvv -r requirements.txt
# Generate the gRPC client code
./proto/codegen.sh
python3 -m pip install build
python3 -m build
See examples for working samples.