Version 0.0.11
- Support providing trusted certificates for TLS connections (#26)
Store the trusted certificate in a PEM file (in case of a certificate chain, this must be the certificate of the immediate issuer, not the root!). Read the trusted certificate as a byte string and pass it to the client instance:with open('certificate.crt', 'rb') as f: trusted_certs = f.read() client = ExabelClient(api_key=api_key, root_certificates=trusted_certs)
Get release at PyPI: https://pypi.org/project/exabel-data-sdk/0.0.11/