Please note this will only work with GBA version v1.5.0 or greater.
pip install gb-automation-client
Create a client
import gba
client_factory = gba.ClientFactory()
client = client_factory.create()
You can optionally pass a dictionary when creating the client
config = {
baseUrl: '',
}
client = client_factory.create(config)
Alternatively, use env vars for configuration
GBA_BASE_URL=
List devices
client.list_devices()