Skip to content

Helpers for making applications which authenticate with Vuforia Web Services

License

Notifications You must be signed in to change notification settings

VWS-Python/vws-auth-tools

Folders and files

NameName
Last commit message
Last commit date
Mar 21, 2025
Oct 12, 2024
Feb 21, 2025
Oct 8, 2024
Dec 24, 2024
Dec 31, 2019
Oct 9, 2024
Jan 5, 2025
Feb 26, 2025
Jul 12, 2024
Dec 7, 2019
Dec 5, 2019
May 18, 2024
Feb 22, 2025
Oct 8, 2024
Oct 8, 2024
Apr 3, 2025
Aug 29, 2024

Repository files navigation

Build Status codecov PyPI

VWS Auth Tools

Authentication and authorization tools for interacting with the Vuforia Web Services (VWS) API.

Installation

pip install vws-auth-tools

This is tested on Python 3.13+.

Usage

"""Make a request to the VWS API."""

import os
from http import HTTPStatus
from urllib.parse import urljoin

import requests

from vws_auth_tools import authorization_header, rfc_1123_date

access_key = os.environ["VWS_SERVER_ACCESS_KEY"]
secret_key = os.environ["VWS_SERVER_SECRET_KEY"]
request_path = "/targets"
content = b""
method = "GET"
formatted_date = rfc_1123_date()
authorization_header_value = authorization_header(
    access_key=access_key,
    secret_key=secret_key,
    method=method,
    content=content,
    content_type="",
    date=formatted_date,
    request_path=request_path,
)

headers = {
    "Authorization": authorization_header_value,
    "Date": formatted_date,
}

response = requests.request(
    method=method,
    url=urljoin(base="https://vws.vuforia.com", url=request_path),
    headers=headers,
    data=content,
    timeout=30,
)

assert response.status_code == HTTPStatus.OK, response.text

Full Documentation

See the full documentation.