$ python3
Python 3.10.6 (main, Nov 14 2022, 16:10:14) [GCC 11.3.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import logging, os
>>> from cvat_sdk import *

>>> # configure logging to see what the SDK
>>> # is doing behind the scenes
>>> logging.basicConfig(level=logging.INFO,
      format='%(levelname)s - %(message)s')
>>> client = make_client(os.getenv('CVAT_HOST'), credentials=(
      os.getenv('CVAT_USER'), os.getenv('CVAT_PASS')))