Set up
You can set it up in two ways.- by setting
verify_sslparameter toTrueorFalse - by setting
verify_sslparameter to path to certificate*.pemfile
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
verify_ssl parameter to True or Falseverify_ssl parameter to path to certificate *.pem
fileFalse , you instruct Python
requests to skip SSL certificate verification. While this can quickly
resolve SSL errors, it’s important to note that it compromises the
security of your application by allowing potential man-in-the-middle
attacks and therefore Bigdata.com does not recommend it in production
environments.from bigdata_client import Bigdata
bigdata = Bigdata(verify_ssl=False)
from bigdata_client import Bigdata
bigdata = Bigdata(verify_ssl="/path/to/certificate.pem")
Was this page helpful?