from ekacare import EkaCareClient# Initialize with client credentialsclient = EkaCareClient( client_id="your_client_id", client_secret="your_client_secret")# Or initialize with an existing access tokenclient = EkaCareClient( client_id="your_client_id", client_secret="your_client_secret", access_token="your_access_token")# Manually get an access tokentoken_response = client.auth.login()access_token = token_response["access_token"]