Metadata-Version: 2.3
Name: certaraiq
Version: 2.2.3
Summary: A Python client for the Certara IQ platform
Author: Certara IQ Support
Author-email: Certara IQ Support <iq-support@certara.com>
License: Proprietary
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Science/Research
Classifier: Topic :: Scientific/Engineering :: Medical Science Apps.
Classifier: Operating System :: POSIX
Requires-Dist: httpx>=0.28
Requires-Dist: ipython>=9.10
Requires-Dist: numpy>=2.4,<3
Requires-Dist: ordered-set>=4.1,<5
Requires-Dist: pandas>=2.3,<3
Requires-Dist: parsita>=2.2,<2.3
Requires-Dist: pint>=0.25,<0.26
Requires-Dist: prettytable>=3.17,<4
Requires-Dist: scipy>=1.17,<2
Requires-Dist: serialite>=0.5,<0.6
Requires-Dist: tabeline[pandas,polars]>=0.6,<0.7
Requires-Python: >=3.12
Project-URL: Repository, https://github.com/certara/certara-iq-v2
Description-Content-Type: text/markdown

# Certara IQ Python client

This is a Python client for the Certara IQ platform. It is useless alone and must be
installed in an environment with a valid access token to a deployed Certara IQ server.

## Configuration

The client searches the following paths for a configuration file:

```
${XDG_CONFIG_HOME:-~/.config}/certaraiq/client.toml

/etc/certaraiq/client.toml
```

Example configuration file:

```toml
api_origin = 'https://dev01.dev-abm.com'
auth_token_path = '/home/jovyan/.jupyterhub/services-blue/auth_token'
```

- `api_origin`: The protocol and host for the Certara IQ server API. All requests will be made against this API. By
  default, the client will request against `http://localhost:5100`
- `auth_token_path`: Path to a file containing a bearer token that will be used to authenticate
  requests. By default, the client will attempt requests with no authentication.

The search stops at the first configuration file found. If no configuration file is found, the defaults for
all values are used.
