Skip to content

Latest commit

 

History

History
18 lines (12 loc) · 331 Bytes

client.rst

File metadata and controls

18 lines (12 loc) · 331 Bytes

Client

The clients is the top-level interface representing your connection with the TestLodge API.

import os

from testlodge import Client


tl = Client(
    email='my.email@email.com',
    api_key=os.environ['TESTLODGE_API_KEY'],
    account_id=os.environ['TESTLODGE_ACCOUNT_ID'],
)