Help Center> SDK Developer Guide> Developer Guide> Python> Using the Python SDK> Python SDK Configuration on the Client

Python SDK Configuration on the Client

Some functions supported by SDK can be enabled or disabled through configuration.

Sample code

1
2
3
4
5
6
conn = connection.Connection(auth_url=auth_url,
                             user_domain_id=userDomainId,
                             project_id=projectId,
                             username=username,
                             password=password,
                             verify=False)

Currently, the following custom parameters are supported.

Parameter

Default Value

Function Description

Remarks

verify

True

SSL check

You are advised to set verify to True.