Skip to main content
Highlighter logo

Highlighter SDK

The Highlighter SDK Python library provides convenient access to the Highlighter API from applications written in Python. There is also a CLI to access the Highlighter API in your shell.

The library also provides other features. For example:

  • Easy configuration for fast setup and use across multiple Highlighter accounts.
  • Functions to help get datasets in and out of Highlighter
  • Helpers for pagination.

Installation

pip install highlighter-sdk

API Tokens, Environment Variables and Profiles

If you have just a single set of Highlighter credentials you can simply set the appropriate environment variables.

export HL_WEB_GRAPHQL_ENDPOINT="https://<client-account>.highlighter.ai/graphql"
export HL_WEB_GRAPHQL_API_TOKEN="###"

# Only required if you have datasets stored outside Highlighter's managed
# aws s3 storage
export AWS_ACCESS_KEY_ID=###
export AWS_SECRET_ACCESS_KEY=###
export AWS_DEFAULT_REGION=###

If you have several Highlighter credentials we suggest you use the profiles option. Create a secure profile with the CLI:

hl profile create --name my-profile --api-token ### --endpoint-url https://...

Profile command documentation is available in docs/profile-commands.md. In short:

  • Use hl profile ... to create, list, update, check, activate, delete, and securely migrate credential profiles.
  • Use hl profile migrate-metadata and hl profile refresh only for optional metadata on legacy YAML profile files.

If you're a Maverick Renegade you can manage the ~/.highlighter-profiles.yaml manually. Below is an example,

# Example ~/.highlighter-profiles.yaml

my_profile:
  endpoint_url: https://<client-account>.highlighter.ai/graphql
  api_token: ###

  # Only required if you have datasets stored outside Highlighter's managed
  # aws s3 storage
  cloud:
    - type: aws-s3
      aws_access_key_id: ###
      aws_secret_access_key: ###
      aws_default_region: ###

To use as a profile in the cli simply use,

hl --profile <profile-name> <command>

In a script you can use,

# in a script
from highlighter.client import HLClient

client = HLClient.from_profile("profile-name")

Additionally HLClient can be initialized using environment variables or by passing credentials direcly

from highlighter.client import HLClient

client = HLClient.get_client()

# or

api_token = "###"
endpoint_url = "https://...highligher.ai/graphql
client = HLCient.from_credential(api_token, endpoint_url)

Finally, if you are in the position where you want to write a specified profile's credentials to an evnironment file such as .env or .envrc you can use the write command. This will create or append to the specified file.

hl --profile my-profile write .envrc

Python API

Once you have a HLClient object you can use it perform queries or mutations. Here is a simple example.

from highlighter.client import HLClient
from pydantic import BaseModel

client = HLClient.get_client()

# You don't always need to define your own BaseModels
# many common BaseModels are defined in highlighter.base_models
# this is simply for completeness
class ObjectClassType(BaseModel):
  id: int
  name: str

id = 1234  # add an object class id from you account

result = client.ObjectClass(
    return_type=ObjectClassType,
    id=id,
    )

print(result)

Some queries may return arbitrarily many results. These queries are paginated and are called Connections and the queries are named accordingly. We have provided a paginate function to help with these Connections

from highlighter.core import paginate
from highlighter.client import HLClient
from pydantic import BaseModel

client = HLClient.get_client()
uuids = [
   "abc123-abc123-abc123-abc123",
   "xyz456-xyz456-xyz456-xyz456",
]

# The following BaseModels are all defined in
# highlighter.base_models. They are simply here
# for completeness
class PageInfo(BaseModel):
    hasNextPage: bool
    endCursor: Optional[str]

class ObjectClass(BaseModel):
    id: str
    uuid: str
    name: str

class ObjectClassTypeConnection(BaseModel):
    pageInfo: PageInfo
    nodes: List[ObjectClass]

generator = paginate(
     client.objectClasses,
     ObjectClassTypeConnection,
     uuid=uuids,
     )

for object_class in generator:
  print(object_class)

Datasets

Highlighter SDK provides a dataset representation that can populated from several sources {HighlighterWeb.Assessments | Local files {.hdf, records.json, coco.json} | S3Bucket}. Once populated the Highlighter.Datasets object contains 2 Pandas.DataFrames (data_files_df and annotations_df) that you can manipulate as required. When you're ready you can write to disk or upload to Highligher using one of the Writer classes to dump your data to disk in a format that can be consumed by your downstream code. If you need you can also roll-your-own Writer by implementing the highlighter.datasets.interfaces.IWriter interface.

CLI Tab Completion

Console
Shell Add this to your ~/.bashrc:
eval "$(_HL_COMPLETE=bash_source hl)"
ZSH Add this to your ~/.zshrc:
eval "$(_HL_COMPLETE=zsh_source hl)"
Fish Add this to ~/.config/fish/completions/hl.fish:
_HL_COMPLETE=fish_source hl | source

For more information, see the Click documentation

Documentation

See https://highlighter-docs.netlify.app/

Download files

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

Source Distribution

highlighter_sdk-2.6.85.tar.gz (1.2 MB view details)

Uploaded Source

Built Distribution

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

highlighter_sdk-2.6.85-py3-none-any.whl (1.5 MB view details)

Uploaded Python 3

File details

Details for the file highlighter_sdk-2.6.85.tar.gz.

File metadata

  • Download URL: highlighter_sdk-2.6.85.tar.gz
  • Upload date:
  • Size: 1.2 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: Hatch/1.16.2 cpython/3.13.12 HTTPX/0.28.1

File hashes

Hashes for highlighter_sdk-2.6.85.tar.gz
Algorithm Hash digest
SHA256 7075996394aeb7cbe8724afcbb4469224f05041c224bb4be6e8d4bb225349ff2
MD5 fa8c028a5dd6f83e3c50d4c317eb7471
BLAKE2b-256 b1a161a73530ba7019d36133776a5a3d1809bb86242a7fa1943b183f75f88b15

See more details on using hashes here.

File details

Details for the file highlighter_sdk-2.6.85-py3-none-any.whl.

File metadata

  • Download URL: highlighter_sdk-2.6.85-py3-none-any.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: Hatch/1.16.2 cpython/3.13.12 HTTPX/0.28.1

File hashes

Hashes for highlighter_sdk-2.6.85-py3-none-any.whl
Algorithm Hash digest
SHA256 99e63946df3c7f9ff6dd49c52c19e3f9b106a3d16979044776ba05d6e2695f25
MD5 06f886522738eff101d799b15f1a0bfd
BLAKE2b-256 dfd6579a799be565f61e9882ed63373dd350599ba6d178af10f0b9a29c531882

See more details on using hashes here.

Release history Release notifications | RSS feed

Supported by

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