Skip to content

Releases: Exabel/python-sdk

Version 0.0.11

06 Jul 18:55
61061de
Compare
Choose a tag to compare
  • 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

06 Jul 19:01
9c1bb70
Compare
Choose a tag to compare
  • 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/