Python SDK
Official RankVectors SDK for Python applications.
Installation
pip install rankvectors
Or with poetry:
poetry add rankvectors
Quick Start
from rankvectors import RankVectors
client = RankVectors(api_key="your-api-key-here")
# Get suggestions for a project
suggestions = client.suggestions.list("project-id")
print(suggestions)