/firezone-client

A simple interface to manage firezone 0.7 with its api

Primary LanguagePython

Firezone Client

Manage your Firezone with its api.

Installation

pip install firezone-client

Init client & List users

from firezone_client import FZclient, User

endpoint = "http://localhost:13000/v0"
token = "0123456789abcdef"
client = FZClient(endpoint, token)

users = client.list(User)

for user in users:
    print(user.email)

Read more for how to use the client in the docs