Skip to content

Latest commit

 

History

History
22 lines (15 loc) · 527 Bytes

README.md

File metadata and controls

22 lines (15 loc) · 527 Bytes

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()