
{{summaryPlaceholder}}

{{#args}}
:param {{var}}: {{descriptionPlaceholder}}
:type {{var}}: {{typePlaceholder}}
{{/args}}
{{#kwargs}}
:param {{var}}: {{descriptionPlaceholder}}
:type {{var}}: {{typePlaceholder}}
{{/kwargs}}
{{#returns}}
:return: {{descriptionPlaceholder}}
:rtype: {{typePlaceholder}}
{{/returns}}
{{#exceptions}}
:raises {{type}}: {{descriptionPlaceholder}}
{{/exceptions}}
:Usage example:

 .. code-block:: python

    import os    
    from dotenv import load_dotenv
    
    import supervisely as sly

    # Load secrets and create API object from .env file (recommended)
    # Learn more here: https://developer.supervisely.com/getting-started/basics-of-authentication
    if sly.is_development():
       load_dotenv(os.path.expanduser("~/supervisely.env"))
    api = sly.Api.from_env()

    # Pass values into the API constructor (optional, not recommended)
    # api = sly.Api(server_address="https://app.supervise.ly", token="4r47N...xaTatb")

