Skip to content

Roche/foxops-client-python

Repository files navigation

foxops-client-python

This repository contains the Python client for the foxops templating tool.

Installation

pip install foxops-client

Usage

from foxops_client import FoxopsClient, AsyncFoxopsClient

client = FoxopsClient("http://localhost:8080", "my-token")
incarnations = client.list_incarnations()

# or alternatively, the async version
client = AsyncFoxopsClient("http://localhost:8080", "my-token")
incarnations = await client.list_incarnations()