Releases: Exabel/python-sdk
Releases · Exabel/python-sdk
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/
Version 0.0.10
- Script for exporting data (#25)
Requires a user with export privilege. Logs in as an end user, not using API key. To run:python scripts/export_data.py
Get release at PyPI: https://pypi.org/project/exabel-data-sdk/0.0.10/