Auth

class tamr_client.UsernamePasswordAuth(username, password)[source]

Provides username/password authentication for Tamr.

Sets the Authorization HTTP header with Tamr’s custom BasicCreds format.

Parameters
  • username (str) –

  • password (str) –

Example

>>> import tamr_client as tc
>>> auth = tc.UsernamePasswordAuth('my username', 'my password')
>>> s = tc.Session(auth)