Skip to main content

Venra provides a simple, high-level api for vespa.ai.

Project description

venra

Project Status: WIP Tests PyPI version

Venra provides a simple, high-level api for vespa.ai.

Venra targets subsets of Vespa's query, document, and system apis. It aims to encapsulate the complexity of dealing with the Vespa http interfaces, response behaviors, and json responses for common client tasks.

Venra is well suited for web backends, command line tools, and enrichment programs which need to retrieve, process, and update documents.

import venra

qdata = {}
qdata["yql"] = "select * from sources awesome_docs;"
response = venra.query.search(qdata)

docs = venra.query.extract_docs(response)
for r, doc in enumerate(docs):
    print(f"rank: {r} >> {doc.some_id} title: {doc.title}")

Note: This library is under active development and the api could change in the future.

Installation

$ pip install venra

Usage

Basic Query:

import venra

# Build query
qdata = {}
qdata["yql"] = "select * from sources baz;"

# Run query
response = venra.query.search(qdata)

# Extract results via helpers
metrics = venra.query.extract_metrics(response)
docs = venra.query.extract_docs(response)

User Query and Grouping:

from pprint import pprint

from venra import config as vconfig
from venra import query as vquery


# Configure
user_query = "machine learning"
vconfig.vespa_host_app = "http://localhost:8080"

# Build query including a grouping
qdata = {}
qdata["yql"] = "select post_id, post_date from sources baz where userQuery()"
qdata["yql"] += f" | all(group(time.date(post_date)) order(-max(post_date)) max(32) each(output(count())) as(day_counts) );"
qdata["hits"] = 10
qdata["timeout"] = "3300ms"
qdata["model.queryString"] = user_query
qdata["model.type"] = "weakAnd"
qdata["presentation.summary"] = "full"
qdata["presentation.timing"] = "true"

# Run query
response = vquery.search(qdata)

# Extract results via helpers
metrics = vquery.extract_metrics(response)
groups = vquery.extract_groups(response)
myfacet = vquery.extract_group_pairs(groups, "day_counts", "count()")
docs = vquery.extract_docs(response)

# Query results ready for use in app
pprint(metrics)
pprint(myfacet)
pprint(docs)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

venra-0.1.8.tar.gz (8.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

venra-0.1.8-py3-none-any.whl (11.4 kB view details)

Uploaded Python 3

File details

Details for the file venra-0.1.8.tar.gz.

File metadata

  • Download URL: venra-0.1.8.tar.gz
  • Upload date:
  • Size: 8.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for venra-0.1.8.tar.gz
Algorithm Hash digest
SHA256 b680e29213d5be2588ea03d511608a634ea1b3d6b7602e91fceff39a2a759312
MD5 2645668b5b2e02a625ee619ebb545f91
BLAKE2b-256 f4a96ec45d684f7e83123e232469e68f9a8602ec22030af60d60b3d61cd99dce

See more details on using hashes here.

Provenance

The following attestation bundles were made for venra-0.1.8.tar.gz:

Publisher: publish-pypi.yml on codycollier/venra

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file venra-0.1.8-py3-none-any.whl.

File metadata

  • Download URL: venra-0.1.8-py3-none-any.whl
  • Upload date:
  • Size: 11.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for venra-0.1.8-py3-none-any.whl
Algorithm Hash digest
SHA256 66852ab32253349ef1d8df040ef2fb7b3128cbef2ec43e87d7673c42ae90c66b
MD5 11fd3564c4f38008ca0b4d213671fc13
BLAKE2b-256 c5f4ac056fc21db0fde4db66c3ac436f19edd7b97308b72d6cb5b9885dd54634

See more details on using hashes here.

Provenance

The following attestation bundles were made for venra-0.1.8-py3-none-any.whl:

Publisher: publish-pypi.yml on codycollier/venra

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page