Authentication

Authentication configuration for Akuvox device connections.

class pylocal_akuvox.auth.AuthMethod[source]

Bases: Enum

Supported authentication methods for Akuvox devices.

NONE = 'none'
ALLOWLIST = 'allowlist'
BASIC = 'basic'
DIGEST = 'digest'
class pylocal_akuvox.auth.AuthConfig[source]

Bases: object

Authentication configuration for connecting to an Akuvox device.

method: AuthMethod
username: str | None = None
password: str | None = None
__init__(method, username=None, password=None)
Parameters:
Return type:

None