Usage

Installation

To use the Analyzr Python SDK, first install it using pip:

(.venv) $ pip install analyzr-sdk-python

Connecting to the API

To connect to the Analyzr API do as follows:

>>> from analyzrclient import Analyzer
>>> analyzer = Analyzer(host="<your host>")
>>> analyzer.login()
Login successful

To check your tenant and version info:

>>> Analyzer().version()
{'status': 200, 'response': { 'version': 'x.x.xxx', 'tenant': <your tenant name>, 'copyright': '2022 (c) Go2Market Insights LLC. All rights reserved.'}}

For example notebooks see the Analyzr Python SDK repo.