Metadata-Version: 2.4
Name: sd_clients
Version: 4.0.0
Summary: Clients for communication with e360 Service Directory and Api Gateway
Author-email: IQVIA <e360pypi@iqvia.com>
License: Copyright 2026 IQVIA Ltd
        
           Licensed under the Apache License, Version 2.0 (the "License");
           you may not use this file except in compliance with the License.
           You may obtain a copy of the License at
        
             http://www.apache.org/licenses/LICENSE-2.0
        
           Unless required by applicable law or agreed to in writing, software
           distributed under the License is distributed on an "AS IS" BASIS,
           WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
           See the License for the specific language governing permissions and
           limitations under the License.
License-File: LICENSE.txt
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Requires-Python: >=3.12
Requires-Dist: clients-core<5,>=4.0.3
Requires-Dist: pydantic<3,>=2
Description-Content-Type: text/markdown

E360 Service directory clients
===

[![pipeline status](http://rwes-gitlab01.internal.imsglobal.com/python-microservice-clients/e360-service-directory-clients/badges/master/pipeline.svg)](http://rwes-gitlab01.internal.imsglobal.com/python-microservice-clients/e360-service-directory-clients/commits/master)

Contains the Service Directory client, and the Api Gateway client.

## Requirements

- Python **3.12+**

## Development

This package depends on **`clients_core`**, resolved from the internal **e360-pypi** Artifactory index. On a corporate network (or VPN), install and run checks:

```bash
pip install uv
export UV_INDEX_URL=https://rwes-artifactory01.internal.imsglobal.com/artifactory/api/pypi/e360-pypi/simple
cd e360-service-directory-clients
uv sync --group dev
```

Run checks:

```bash
uv run ruff check sd_clients tests
uv run ruff format --check sd_clients tests
uv run pytest
```

Install pre-commit hooks:

```bash
pre-commit install --install-hooks --overwrite
```
