Skip to content

Latest commit

 

History

History
26 lines (17 loc) · 466 Bytes

File metadata and controls

26 lines (17 loc) · 466 Bytes

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